Наследование: IfcFlowTerminal
Пример #1
0
        internal static void parseFields(IfcLamp s, List <string> arrFields, ref int ipos)
        {
            IfcFlowTerminal.parseFields(s, arrFields, ref ipos);
            string str = arrFields[ipos++];

            if (str[0] == '.')
            {
                s.mPredefinedType = (IfcLampTypeEnum)Enum.Parse(typeof(IfcLampTypeEnum), str.Substring(1, str.Length - 2));
            }
        }
Пример #2
0
 internal new static IfcLamp Parse(string strDef)
 {
     IfcLamp s = new IfcLamp(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return(s);
 }
Пример #3
0
 internal IfcLamp(DatabaseIfc db, IfcLamp l) : base(db, l)
 {
     mPredefinedType = l.mPredefinedType;
 }
Пример #4
0
 internal IfcLamp(IfcLamp l) : base(l)
 {
     mPredefinedType = l.mPredefinedType;
 }
Пример #5
0
 internal IfcLamp(DatabaseIfc db, IfcLamp l, DuplicateOptions options) : base(db, l, options)
 {
     mPredefinedType = l.mPredefinedType;
 }
Пример #6
0
 internal IfcLamp(DatabaseIfc db, IfcLamp l, IfcOwnerHistory ownerHistory, bool downStream) : base(db, l, ownerHistory, downStream)
 {
     mPredefinedType = l.mPredefinedType;
 }
Пример #7
0
 internal static void parseFields(IfcLamp s, List<string> arrFields, ref int ipos)
 {
     IfcFlowTerminal.parseFields(s, arrFields, ref ipos);
     string str = arrFields[ipos++];
     if (str[0] == '.')
         s.mPredefinedType = (IfcLampTypeEnum)Enum.Parse(typeof(IfcLampTypeEnum), str.Substring(1, str.Length - 2));
 }
Пример #8
0
 internal static new IfcLamp Parse(string strDef)
 {
     IfcLamp s = new IfcLamp(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s;
 }
Пример #9
0
 internal IfcLamp(DatabaseIfc db, IfcLamp l)
     : base(db, l)
 {
     mPredefinedType = l.mPredefinedType;
 }
Пример #10
0
		internal IfcLamp(IfcLamp l) : base(l) { mPredefinedType = l.mPredefinedType; }