상속: IfcFlowTerminalType
예제 #1
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcElectricApplianceType Parse(string strDef) { IfcElectricApplianceType t = new IfcElectricApplianceType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
예제 #2
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcElectricApplianceType(IfcElectricApplianceType t) : base(t) { mPredefinedType = t.mPredefinedType; }
예제 #3
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcElectricApplianceType t, List<string> arrFields, ref int ipos) { IfcFlowTerminalType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcElectricApplianceTypeEnum)Enum.Parse(typeof(IfcElectricApplianceTypeEnum), arrFields[ipos++].Replace(".", "")); }
예제 #4
0
		internal IfcElectricApplianceType(DatabaseIfc db, IfcElectricApplianceType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }