Ejemplo n.º 1
0
        public override void Parse(int propIndex, IPropertyValue value, int[] nestedIndex)
        {
            switch (propIndex)
            {
            case 0:
            case 1:
            case 2:
            case 3:
            case 4:
            case 5:
            case 6:
            case 7:
            case 8:
                base.Parse(propIndex, value, nestedIndex);
                return;

            case 9:
                _predefinedType = (IfcSpatialZoneTypeEnum)System.Enum.Parse(typeof(IfcSpatialZoneTypeEnum), value.EnumVal, true);
                return;

            case 10:
                _longName = value.StringVal;
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
Ejemplo n.º 2
0
 public IfcSpatialZoneType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcSpatialZoneTypeEnum __PredefinedType, IfcLabel?__LongName)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this._PredefinedType = __PredefinedType;
     this._LongName       = __LongName;
 }
Ejemplo n.º 3
0
 public IfcSpatialZoneType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcSpatialZoneTypeEnum predefinedType, IfcLabel longName) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
     LongName       = longName;
 }
Ejemplo n.º 4
0
        }                                          // optional


        /// <summary>
        /// Construct a IfcSpatialZoneType with all required attributes.
        /// </summary>
        public IfcSpatialZoneType(IfcGloballyUniqueId globalId, IfcSpatialZoneTypeEnum predefinedType) : base(globalId)
        {
            PredefinedType = predefinedType;
        }
Ejemplo n.º 5
0
 public IfcSpatialZone(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcLabel longName, IfcSpatialZoneTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, longName)
 {
     PredefinedType = predefinedType;
 }
Ejemplo n.º 6
0
		internal IfcSpatialZoneType(IfcSpatialZoneType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Ejemplo n.º 7
0
		protected IfcSpatialZone(IfcSpatialZone p) : base(p) { mPredefinedType = p.mPredefinedType; }