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