상속: IfcBuildingElementType
예제 #1
0
 public Pset_SlabCommon(IfcSlabType type)
     : base(type.mDatabase, "Pset_SlabCommon")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
예제 #2
0
 public Pset_ConcreteElementGeneral(IfcSlabType type)
     : base(type.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
예제 #3
0
 public Pset_SlabCommon(IfcSlabType slabType) : base(slabType.mDatabase, "Pset_SlabCommon")
 {
     Description = slabType.Name; slabType.AddPropertySet(this);
 }
예제 #4
0
 public Qto_SlabBaseQuantities(IfcSlabType type) : base(type)
 {
 }
예제 #5
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcSlabType Parse(string strDef) { IfcSlabType t = new IfcSlabType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
예제 #6
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcSlabType t, List<string> arrFields, ref int ipos) { IfcBuildingElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcSlabTypeEnum)Enum.Parse(typeof(IfcSlabTypeEnum), arrFields[ipos++].Replace(".", "")); }
예제 #7
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcSlabType(IfcSlabType t) : base(t) { mPredefinedType = t.mPredefinedType; }