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