Inheritance: IfcBuildingElement
Example #1
0
		internal static void parseFields(IfcChimney w, List<string> arrFields, ref int ipos, Schema schema)
		{
			IfcBuildingElement.parseFields(w, arrFields, ref ipos);
			if (schema != Schema.IFC2x3)
			{
				string str = arrFields[ipos++];
				if (str[0] == '.')
					w.mPredefinedType = (IfcChimneyTypeEnum)Enum.Parse(typeof(IfcChimneyTypeEnum), str.Substring(1, str.Length - 2));
			}
		}
Example #2
0
		internal IfcChimney(IfcChimney c) : base(c) { mPredefinedType = c.mPredefinedType; }
Example #3
0
		internal static IfcChimney Parse(string strDef, Schema schema) { IfcChimney w = new IfcChimney(); int ipos = 0; parseFields(w, ParserSTEP.SplitLineFields(strDef), ref ipos, schema); return w; }
Example #4
0
 public Pset_ConcreteElementGeneral(IfcChimney instance)
     : base(instance.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }