Inheritance: IfcDistributionControlElement
コード例 #1
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal static void parseFields(IfcFlowInstrument a, List<string> arrFields, ref int ipos)
 {
     IfcDistributionControlElement.parseFields(a, arrFields, ref ipos);
     string s = arrFields[ipos++];
     if (s.StartsWith("."))
         a.mPredefinedType = (IfcFlowInstrumentTypeEnum)Enum.Parse(typeof(IfcFlowInstrumentTypeEnum), s.Replace(".", ""));
 }
コード例 #2
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal static new IfcFlowInstrument Parse(string strDef)
 {
     IfcFlowInstrument d = new IfcFlowInstrument(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d;
 }
コード例 #3
0
ファイル: IFC F.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcFlowInstrument(IfcFlowInstrument i) : base(i) { mPredefinedType = i.mPredefinedType; }
コード例 #4
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal IfcFlowInstrument(DatabaseIfc db, IfcFlowInstrument i)
     : base(db,i)
 {
     mPredefinedType = i.mPredefinedType;
 }
コード例 #5
0
ファイル: IFC F.cs プロジェクト: xeolabs/GeometryGymIFC
 internal IfcFlowInstrument(DatabaseIfc db, IfcFlowInstrument i, DuplicateOptions options) : base(db, i, options)
 {
     mPredefinedType = i.mPredefinedType;
 }