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 = (IfcAudioVisualApplianceTypeEnum)System.Enum.Parse(typeof(IfcAudioVisualApplianceTypeEnum), value.EnumVal, true);
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
Exemplo n.º 2
0
 public IfcAudioVisualApplianceType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcAudioVisualApplianceTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this._PredefinedType = __PredefinedType;
 }
Exemplo n.º 3
0
		internal IfcAudioVisualApplianceType(IfcAudioVisualApplianceType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Exemplo n.º 4
0
		internal IfcAudioVisualApplianceType(DatabaseIfc m, string name, IfcAudioVisualApplianceTypeEnum t) : base(m) { Name = name; mPredefinedType = t; }
Exemplo n.º 5
0
 public IfcAudioVisualAppliance(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcAudioVisualApplianceTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
Exemplo n.º 6
0
		internal IfcAudioVisualApplianceType(DatabaseIfc db, IfcAudioVisualApplianceType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }
Exemplo n.º 7
0
		internal IfcAudioVisualAppliance(DatabaseIfc db, IfcAudioVisualAppliance a) : base(db,a) { mPredefinedType = a.mPredefinedType; }
 public IfcAudioVisualApplianceType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcAudioVisualApplianceTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
 /// <summary>
 /// Construct a IfcAudioVisualApplianceType with all required attributes.
 /// </summary>
 public IfcAudioVisualApplianceType(IfcGloballyUniqueId globalId, IfcAudioVisualApplianceTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }