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(".", "")); }
internal static new IfcFanType Parse(string strDef) { IfcFanType t = new IfcFanType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
internal IfcFanType(IfcFanType be) : base((IfcFlowMovingDeviceType)be) { mPredefinedType = be.mPredefinedType; }
internal IfcFanType(DatabaseIfc db, IfcFanType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }
internal IfcFanType(DatabaseIfc db, IfcFanType t, DuplicateOptions options) : base(db, t, options) { mPredefinedType = t.mPredefinedType; }