internal new static IfcAirTerminalBoxType Parse(string strDef) { IfcAirTerminalBoxType t = new IfcAirTerminalBoxType(); int ipos = 0; parseFields(t,ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
internal IfcAirTerminalBoxType(IfcAirTerminalBoxType t) : base(t) { mPredefinedType = t.mPredefinedType; }
internal static void parseFields(IfcAirTerminalBoxType t,List<string> arrFields, ref int ipos) { IfcFlowControllerType.parseFields(t,arrFields, ref ipos); t.mPredefinedType = (IfcAirTerminalBoxTypeEnum)Enum.Parse(typeof(IfcAirTerminalBoxTypeEnum), arrFields[ipos++].Replace(".", "")); }
internal IfcAirTerminalBoxType(DatabaseIfc db, IfcAirTerminalBoxType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }