Example #1
0
 private XbimWallTypeEnum GetIfcWallTypeEnum(IfcWallTypeEnum enu)
 {
     switch (enu)
     {
         case IfcWallTypeEnum.STANDARD: return XbimWallTypeEnum.STANDARD;
         case IfcWallTypeEnum.POLYGONAL: return XbimWallTypeEnum.POLYGONAL;
         case IfcWallTypeEnum.SHEAR: return XbimWallTypeEnum.SHEAR;
         case IfcWallTypeEnum.ELEMENTEDWALL: return XbimWallTypeEnum.ELEMENTEDWALL;
         case IfcWallTypeEnum.PLUMBINGWALL: return XbimWallTypeEnum.PLUMBINGWALL;
         case IfcWallTypeEnum.USERDEFINED: return XbimWallTypeEnum.USERDEFINED;
         case IfcWallTypeEnum.NOTDEFINED: return XbimWallTypeEnum.NOTDEFINED;
         default: return XbimWallTypeEnum.NOTDEFINED;
     }
 }
Example #2
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:
         case 8:
             base.IfcParse(propIndex, value);
             break;
         case 9:
             _predefinedType = (IfcWallTypeEnum) Enum.Parse(typeof (IfcWallTypeEnum), value.EnumVal, true);
             break;
         default:
             this.HandleUnexpectedAttribute(propIndex, value); break;
     }
 }
Example #3
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:
            case 8:
                base.IfcParse(propIndex, value);
                break;

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

            default:
                this.HandleUnexpectedAttribute(propIndex, value); break;
            }
        }
        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 = (IfcWallTypeEnum)System.Enum.Parse(typeof(IfcWallTypeEnum), value.EnumVal, true);
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
Example #5
0
 internal IfcWall(IfcWall w) : base(w)
 {
     mPredefinedType = w.mPredefinedType;
 }
Example #6
0
 internal IfcWallType(IfcWallType t) : base(t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #7
0
		internal IfcWallType(IfcWallType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Example #8
0
 public IfcWallType(string name, IfcMaterialLayerSet ls, IfcWallTypeEnum type) : base(ls.mDatabase)
 {
     Name = name; mPredefinedType = type; MaterialSelect = ls;
 }
Example #9
0
 internal IfcWallType(DatabaseIfc db, IfcWallType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #10
0
 internal IfcWallType(DatabaseIfc db, IfcWallType t)
     : base(db,t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #11
0
 public IfcWallType(DatabaseIfc m, string name, IfcWallTypeEnum type)
     : base(m)
 {
     Name = name; mPredefinedType = type;
 }
Example #12
0
 public IfcWallType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcLabel?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcWallTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this._PredefinedType = __PredefinedType;
 }
Example #13
0
 public IfcWallType(DatabaseIfc db, string name, IfcWallTypeEnum type) : base(db)
 {
     Name = name; PredefinedType = type;
 }
Example #14
0
 internal IfcWall(DatabaseIfc db, IfcWall w, IfcOwnerHistory ownerHistory, bool downStream) : base(db, w, ownerHistory, downStream)
 {
     mPredefinedType = w.mPredefinedType;
 }
Example #15
0
 internal IfcWallType(DatabaseIfc db, IfcWallType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #16
0
 internal IfcWallType(DatabaseIfc db, IfcWallType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #17
0
 internal IfcWall(DatabaseIfc db, IfcWall w, DuplicateOptions options) : base(db, w, options)
 {
     mPredefinedType = w.mPredefinedType;
 }
Example #18
0
 /// <summary>
 /// Construct a IfcWallType with all required attributes.
 /// </summary>
 public IfcWallType(IfcGloballyUniqueId globalId, IfcWallTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
Example #19
0
 public IfcWallType(string name, IfcMaterialLayerSet ls, IfcWallTypeEnum type)
     : base(ls.mDatabase)
 {
     Name = name; mPredefinedType = type; MaterialSelect = ls;
 }
Example #20
0
 public IfcWallType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcWallTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
Example #21
0
 internal IfcWall(DatabaseIfc db, IfcWall w)
     : base(db, w)
 {
     mPredefinedType = w.mPredefinedType;
 }
Example #22
0
 internal IfcWall(DatabaseIfc db, IfcWall w) : base(db, w)
 {
     mPredefinedType = w.mPredefinedType;
 }
Example #23
0
 public IfcWallType(DatabaseIfc m, string name, IfcWallTypeEnum type) : base(m)
 {
     Name = name; mPredefinedType = type;
 }
Example #24
0
 public IfcWallStandardCase(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcWallTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag, predefinedType)
 {
 }
Example #25
0
 internal IfcWall(DatabaseIfc db, IfcWall w, bool downStream) : base(db, w, downStream)
 {
     mPredefinedType = w.mPredefinedType;
 }
Example #26
0
		internal IfcWall(IfcWall w) : base(w) { mPredefinedType = w.mPredefinedType; }