Inheritance: IfcFlowStorageDeviceType
示例#1
0
		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
		internal IfcElectricFlowStorageDeviceType(IfcElectricFlowStorageDeviceType be) : base((IfcFlowStorageDeviceType)be) { mPredefinedType = be.mPredefinedType; }
示例#3
0
		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
		internal IfcElectricFlowStorageDeviceType(DatabaseIfc db, IfcElectricFlowStorageDeviceType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }