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