Inheritance: IfcEnergyConversionDeviceType
Ejemplo n.º 1
0
 public Pset_BoilerTypeWater(IfcBoilerType boilerType)
     : base(boilerType.mDatabase, "Pset_BoilerTypeWater")
 {
     Description = boilerType.Name; boilerType.AddPropertySet(this);
 }
Ejemplo n.º 2
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Ejemplo n.º 3
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Ejemplo n.º 4
0
		internal new static IfcBoilerType Parse(string strDef) { IfcBoilerType t = new IfcBoilerType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Ejemplo n.º 5
0
		internal static void parseFields(IfcBoilerType t, List<string> arrFields, ref int ipos) { IfcEnergyConversionDeviceType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcBoilerTypeEnum)Enum.Parse(typeof(IfcBoilerTypeEnum), arrFields[ipos++].Replace(".", "")); }
Ejemplo n.º 6
0
		internal IfcBoilerType(IfcBoilerType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Ejemplo n.º 7
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }