Inheritance: IfcFlowControllerType
Exemple #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; }
Exemple #2
0
		internal IfcDamperType(IfcDamperType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Exemple #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(".", "")); }
Exemple #4
0
		internal IfcDamperType(DatabaseIfc db, IfcDamperType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }