Inheritance: IfcEnergyConversionDeviceType
 public Pset_BoilerTypeWater(IfcBoilerType boilerType)
     : base(boilerType.mDatabase, "Pset_BoilerTypeWater")
 {
     Description = boilerType.Name; boilerType.AddPropertySet(this);
 }
Exemple #2
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Exemple #3
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Exemple #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; }
Exemple #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(".", "")); }
Exemple #6
0
		internal IfcBoilerType(IfcBoilerType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Exemple #7
0
 internal IfcBoilerType(DatabaseIfc db, IfcBoilerType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }