Inheritance: IfcDistributionControlElement
Example #1
0
 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(".", ""));
 }
Example #2
0
 internal static new IfcFlowInstrument Parse(string strDef)
 {
     IfcFlowInstrument d = new IfcFlowInstrument(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d;
 }
Example #3
0
		internal IfcFlowInstrument(IfcFlowInstrument i) : base(i) { mPredefinedType = i.mPredefinedType; }
Example #4
0
 internal IfcFlowInstrument(DatabaseIfc db, IfcFlowInstrument i)
     : base(db,i)
 {
     mPredefinedType = i.mPredefinedType;
 }
Example #5
0
 internal IfcFlowInstrument(DatabaseIfc db, IfcFlowInstrument i, DuplicateOptions options) : base(db, i, options)
 {
     mPredefinedType = i.mPredefinedType;
 }