상속: IfcFlowMovingDeviceType
예제 #1
0
 public Pset_PumpTypeCommon(IfcPumpType pumpType)
     : base(pumpType.mDatabase, "Pset_PumpTypeCommon")
 {
     Description = pumpType.Name; pumpType.AddPropertySet(this);
 }
예제 #2
0
 public Pset_PumpTypeCommon(IfcPumpType pumpType) : base(pumpType.mDatabase, "Pset_PumpTypeCommon")
 {
     Description = pumpType.Name; pumpType.AddPropertySet(this);
 }
예제 #3
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcPumpType t, List<string> arrFields, ref int ipos) { IfcFlowMovingDeviceType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcPumpTypeEnum)Enum.Parse(typeof(IfcPumpTypeEnum), arrFields[ipos++].Replace(".", "")); }
예제 #4
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcPumpType Parse(string strDef) { IfcPumpType t = new IfcPumpType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
예제 #5
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcPumpType(IfcPumpType be) : base(be) { mPredefinedType = be.mPredefinedType; }