Inheritance: IfcBuildingElementType
Beispiel #1
0
		internal new static IfcChimneyType Parse(string strDef) { IfcChimneyType t = new IfcChimneyType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Beispiel #2
0
		internal IfcChimneyType(IfcChimneyType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Beispiel #3
0
		internal static void parseFields(IfcChimneyType t, List<string> arrFields, ref int ipos) { IfcBuildingElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcChimneyTypeEnum)Enum.Parse(typeof(IfcChimneyTypeEnum), arrFields[ipos++].Replace(".", "")); }
 public Pset_ConcreteElementGeneral(IfcChimneyType type)
     : base(type.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = type.Name; type.AddPropertySet(this);
 }