Inheritance: IfcDistributionFlowElement
コード例 #1
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		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; }
コード例 #2
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDistributionChamberElement(IfcDistributionChamberElement e) : base(e) { }
コード例 #3
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		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);
			}
		}
コード例 #4
0
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcDistributionChamberElement(DatabaseIfc db, IfcDistributionChamberElement e) : base(db, e) { mPredefinedType = e.mPredefinedType; }