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