Inheritance: IfcDistributionFlowElementType
コード例 #1
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcDistributionChamberElementType Parse(string strDef) { IfcDistributionChamberElementType t = new IfcDistributionChamberElementType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
コード例 #2
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDistributionChamberElementType(IfcDistributionChamberElementType t) : base(t) { mPredefinedType = t.mPredefinedType; }
コード例 #3
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcDistributionChamberElementType t, List<string> arrFields, ref int ipos) { IfcDistributionFlowElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcDistributionChamberElementTypeEnum)Enum.Parse(typeof(IfcDistributionChamberElementTypeEnum), arrFields[ipos++].Replace(".", "")); }
コード例 #4
0
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcDistributionChamberElementType(DatabaseIfc db, IfcDistributionChamberElementType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }