Пример #1
0
 public Pset_SpaceOccupancyRequirements(IfcSpatialZoneType type)
     : base(type.mDatabase, "Pset_SpaceOccupancyRequirements")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
Пример #2
0
		internal static void parseFields(IfcSpatialZoneType t, List<string> arrFields, ref int ipos) { IfcSpatialElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcSpatialZoneTypeEnum)Enum.Parse(typeof(IfcSpatialZoneTypeEnum), arrFields[ipos++].Replace(".", "")); }
Пример #3
0
		internal new static IfcSpatialZoneType Parse(string strDef) { IfcSpatialZoneType t = new IfcSpatialZoneType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Пример #4
0
		internal IfcSpatialZoneType(IfcSpatialZoneType t) : base(t) { mPredefinedType = t.mPredefinedType; }