示例#1
0
        public override void IfcParse(int propIndex, IPropertyValue value)
        {
            switch (propIndex)
            {
            case 0:
            case 1:
            case 2:
            case 3:
            case 4:
            case 5:
            case 6:
            case 7:
                base.IfcParse(propIndex, value);
                break;

            case 8:
                _assemblyPlace = (IfcAssemblyPlaceEnum)
                                 Enum.Parse(typeof(IfcAssemblyPlaceEnum), value.EnumVal, true);
                break;

            case 9:
                _predefinedType = (IfcElementAssemblyTypeEnum)
                                  Enum.Parse(typeof(IfcElementAssemblyTypeEnum), value.EnumVal, true);
                break;

            default:
                this.HandleUnexpectedAttribute(propIndex, value); break;
            }
        }
示例#2
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:
                base.Parse(propIndex, value, nestedIndex);
                return;

            case 8:
                _assemblyPlace = (IfcAssemblyPlaceEnum)System.Enum.Parse(typeof(IfcAssemblyPlaceEnum), value.EnumVal, true);
                return;

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

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
示例#3
0
		public IfcElementAssemblyType(DatabaseIfc m, string name, IfcElementAssemblyTypeEnum type) : base(m) { Name = name; mPredefinedType = type; if (m.mSchema == Schema.IFC2x3) throw new Exception(KeyWord + " only supported in IFC4!"); }
示例#4
0
		internal IfcElementAssemblyType(IfcElementAssemblyType o) : base(o) { mPredefinedType = o.mPredefinedType; }
示例#5
0
		public IfcElementAssembly(IfcProduct host, IfcAssemblyPlaceEnum place, IfcElementAssemblyTypeEnum type) : base(host.mDatabase) { mHost = host; AssemblyPlace = place; PredefinedType = type; }
示例#6
0
		internal IfcElementAssembly(IfcElementAssembly a) : base(a) { mPredefinedType = a.mPredefinedType; }
示例#7
0
 public IfcElementAssemblyType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcElementAssemblyTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this._PredefinedType = __PredefinedType;
 }
示例#8
0
 public IfcElementAssembly(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcLabel?__ObjectType, IfcObjectPlacement __ObjectPlacement, IfcProductRepresentation __Representation, IfcIdentifier?__Tag, IfcAssemblyPlaceEnum?__AssemblyPlace, IfcElementAssemblyTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ObjectType, __ObjectPlacement, __Representation, __Tag)
 {
     this._AssemblyPlace  = __AssemblyPlace;
     this._PredefinedType = __PredefinedType;
 }
示例#9
0
		internal IfcElementAssemblyType(DatabaseIfc db, IfcElementAssemblyType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }
示例#10
0
		internal IfcElementAssembly(DatabaseIfc db, IfcElementAssembly a, bool downStream) : base(db,a,downStream) { mPredefinedType = a.mPredefinedType; }
示例#11
0
 public IfcElementAssembly(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcAssemblyPlaceEnum assemblyPlace, IfcElementAssemblyTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     AssemblyPlace  = assemblyPlace;
     PredefinedType = predefinedType;
 }
 public override void IfcParse(int propIndex, IPropertyValue value)
 {
     switch (propIndex)
     {
         case 0:
         case 1:
         case 2:
         case 3:
         case 4:
         case 5:
         case 6:
         case 7:
             base.IfcParse(propIndex, value);
             break;
         case 8:
             _assemblyPlace = (IfcAssemblyPlaceEnum)
                 Enum.Parse(typeof(IfcAssemblyPlaceEnum), value.EnumVal, true);
             break;
         case 9:
             _predefinedType = (IfcElementAssemblyTypeEnum)
                 Enum.Parse(typeof(IfcElementAssemblyTypeEnum), value.EnumVal, true);
             break;
         default:
             this.HandleUnexpectedAttribute(propIndex, value); break;
     }
 }
示例#13
0
 public IfcElementAssemblyType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcElementAssemblyTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
示例#14
0
 /// <summary>
 /// Construct a IfcElementAssemblyType with all required attributes.
 /// </summary>
 public IfcElementAssemblyType(IfcGloballyUniqueId globalId, IfcElementAssemblyTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }