상속: IfcDistributionElement
예제 #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(".", ""));
            }
        }
예제 #2
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcDistributionControlElement Parse(string strDef) { IfcDistributionControlElement e = new IfcDistributionControlElement(); int ipos = 0; parseFields(e, ParserSTEP.SplitLineFields(strDef), ref ipos); return e; }
예제 #3
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcDistributionControlElement(IfcDistributionControlElement e) : base(e) { }
예제 #4
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcDistributionControlElement e, List<string> arrFields, ref int ipos) { IfcDistributionElement.parseFields(e, arrFields, ref ipos); e.mControlElementId = arrFields[ipos++]; }
예제 #5
0
		internal IfcDistributionControlElement(DatabaseIfc db, IfcDistributionControlElement e) : base(db,e) { }