Наследование: IfcBuildingElementType
Пример #1
0
 public Qto_FootingBaseQuantities(IfcFootingType type) : base(type.mDatabase, "Qto_FootingBaseQuantities")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
Пример #2
0
 public Qto_SpaceBaseQuantities(IfcFootingType type) : base(type)
 {
 }
Пример #3
0
 internal static new IfcFootingType Parse(string strDef)
 {
     IfcFootingType t = new IfcFootingType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t;
 }
Пример #4
0
 internal static void parseFields(IfcFootingType t, List<string> arrFields, ref int ipos)
 {
     IfcBuildingElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcFootingTypeEnum)Enum.Parse(typeof(IfcFootingTypeEnum), arrFields[ipos++].Replace(".", ""));
 }
Пример #5
0
 internal IfcFootingType(DatabaseIfc db, IfcFootingType t)
     : base(db,t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Пример #6
0
 public Qto_FootingBaseQuantities(IfcFootingType type)
     : base(type.mDatabase, "Qto_FootingBaseQuantities")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
Пример #7
0
 public Pset_ConcreteElementGeneral(IfcFootingType type)
     : base(type.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
Пример #8
0
		internal IfcFootingType(IfcFootingType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Пример #9
0
 internal IfcFootingType(DatabaseIfc db, IfcFootingType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }