Inheritance: IfcFlowMovingDeviceType
Esempio n. 1
0
 internal static void parseFields(IfcFanType t, List<string> arrFields, ref int ipos)
 {
     IfcFlowMovingDeviceType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcFanTypeEnum)Enum.Parse(typeof(IfcFanTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
Esempio n. 2
0
 internal static new IfcFanType Parse(string strDef)
 {
     IfcFanType t = new IfcFanType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t;
 }
Esempio n. 3
0
		internal IfcFanType(IfcFanType be) : base((IfcFlowMovingDeviceType)be) { mPredefinedType = be.mPredefinedType; }
Esempio n. 4
0
 internal IfcFanType(DatabaseIfc db, IfcFanType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Esempio n. 5
0
 internal IfcFanType(DatabaseIfc db, IfcFanType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }