Inheritance: IfcDistributionFlowElement
Exemplo n.º 1
0
		internal new static IfcDistributionChamberElement Parse(string strDef, Schema schema) { IfcDistributionChamberElement e = new IfcDistributionChamberElement(); int ipos = 0; parseFields(e, ParserSTEP.SplitLineFields(strDef), ref ipos, schema); return e; }
Exemplo n.º 2
0
		internal IfcDistributionChamberElement(IfcDistributionChamberElement e) : base(e) { }
Exemplo n.º 3
0
		internal static void parseFields(IfcDistributionChamberElement e, List<string> arrFields, ref int ipos, Schema schema)
		{
			IfcDistributionFlowElement.parseFields(e, arrFields, ref ipos);
			if (schema != Schema.IFC2x3)
			{
				string str = arrFields[ipos++];
				if (str[0] == '.')
					e.mPredefinedType = (IfcDistributionChamberElementTypeEnum)Enum.Parse(typeof(IfcDistributionChamberElementTypeEnum), str);
			}
		}
Exemplo n.º 4
0
		internal IfcDistributionChamberElement(DatabaseIfc db, IfcDistributionChamberElement e) : base(db, e) { mPredefinedType = e.mPredefinedType; }