Inheritance: IfcFlowControllerType
Ejemplo n.º 1
0
		internal new static IfcDamperType Parse(string strDef) { IfcDamperType t = new IfcDamperType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Ejemplo n.º 2
0
		internal IfcDamperType(IfcDamperType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Ejemplo n.º 3
0
		internal static void parseFields(IfcDamperType t, List<string> arrFields, ref int ipos) { IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcDamperTypeEnum)Enum.Parse(typeof(IfcDamperTypeEnum), arrFields[ipos++].Replace(".", "")); }
Ejemplo n.º 4
0
		internal IfcDamperType(DatabaseIfc db, IfcDamperType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }