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