Inheritance: IfcFlowTerminalType
コード例 #1
0
ファイル: IFC L.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal static void parseFields(IfcLampType t, List<string> arrFields, ref int ipos)
 {
     IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcLampTypeEnum)Enum.Parse(typeof(IfcLampTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
コード例 #2
0
ファイル: IFC L.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal static new IfcLampType Parse(string strDef)
 {
     IfcLampType t = new IfcLampType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t;
 }
コード例 #3
0
ファイル: IFC L.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal IfcLampType(DatabaseIfc db, IfcLampType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
コード例 #4
0
ファイル: IFC L.cs プロジェクト: xxxhycl2010/GeometryGymIFC
 internal static void parseFields(IfcLampType t, List <string> arrFields, ref int ipos)
 {
     IfcFlowControllerType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcLampTypeEnum)Enum.Parse(typeof(IfcLampTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
コード例 #5
0
ファイル: IFC L.cs プロジェクト: xxxhycl2010/GeometryGymIFC
 internal IfcLampType(DatabaseIfc db, IfcLampType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
コード例 #6
0
ファイル: IFC L.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcLampType(IfcLampType t) : base(t) { mPredefinedType = t.mPredefinedType; }