Inheritance: IfcDistributionElement
コード例 #1
0
ファイル: IFC U.cs プロジェクト: jddaigle/GeometryGymIFC
        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
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcDistributionControlElement(DatabaseIfc db, IfcDistributionControlElement e) : base(db,e) { }