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