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