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