Inheritance: IfcDistributionControlElement
Ejemplo n.º 1
0
 internal static void parseFields(IfcUnitaryControlElement a, List<string> arrFields, ref int ipos)
 {
     IfcDistributionControlElement.parseFields(a, arrFields, ref ipos);
     string s = arrFields[ipos++];
     if (s.StartsWith("."))
         a.mPredefinedType = (IfcUnitaryControlElementTypeEnum)Enum.Parse(typeof(IfcUnitaryControlElementTypeEnum), s.Replace(".", ""));
 }
Ejemplo n.º 2
0
        internal static void parseFields(IfcUnitaryControlElement a, List <string> arrFields, ref int ipos)
        {
            IfcDistributionControlElement.parseFields(a, arrFields, ref ipos);
            string s = arrFields[ipos++];

            if (s.StartsWith("."))
            {
                a.mPredefinedType = (IfcUnitaryControlElementTypeEnum)Enum.Parse(typeof(IfcUnitaryControlElementTypeEnum), s.Replace(".", ""));
            }
        }
Ejemplo n.º 3
0
 internal new static IfcUnitaryControlElement Parse(string strDef)
 {
     IfcUnitaryControlElement d = new IfcUnitaryControlElement(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return(d);
 }
Ejemplo n.º 4
0
 internal IfcUnitaryControlElement(DatabaseIfc db, IfcUnitaryControlElement e) : base(db, e)
 {
     mPredefinedType = e.mPredefinedType;
 }
Ejemplo n.º 5
0
 internal IfcUnitaryControlElement(DatabaseIfc db, IfcUnitaryControlElement e, DuplicateOptions options) : base(db, e, options)
 {
     mPredefinedType = e.mPredefinedType;
 }
Ejemplo n.º 6
0
 internal static new IfcUnitaryControlElement Parse(string strDef)
 {
     IfcUnitaryControlElement d = new IfcUnitaryControlElement(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d;
 }
Ejemplo n.º 7
0
 internal IfcUnitaryControlElement(DatabaseIfc db, IfcUnitaryControlElement e)
     : base(db,e)
 {
     mPredefinedType = e.mPredefinedType;
 }
Ejemplo n.º 8
0
		internal IfcUnitaryControlElement(IfcUnitaryControlElement a) : base(a) { mPredefinedType = a.mPredefinedType; }
Ejemplo n.º 9
0
 internal IfcUnitaryControlElement(DatabaseIfc db, IfcUnitaryControlElement e, IfcOwnerHistory ownerHistory, bool downStream) : base(db, e, ownerHistory, downStream)
 {
     mPredefinedType = e.mPredefinedType;
 }
Ejemplo n.º 10
0
 internal IfcUnitaryControlElement(IfcUnitaryControlElement a) : base(a)
 {
     mPredefinedType = a.mPredefinedType;
 }