示例#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;
     }
 }
示例#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;
     }
 }
示例#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()));
            }
        }
示例#5
0
 internal IfcWall(IfcWall w) : base(w)
 {
     mPredefinedType = w.mPredefinedType;
 }
示例#6
0
 internal IfcWallType(IfcWallType t) : base(t)
 {
     mPredefinedType = t.mPredefinedType;
 }
示例#7
0
		internal IfcWallType(IfcWallType t) : base(t) { mPredefinedType = t.mPredefinedType; }
示例#8
0
 public IfcWallType(string name, IfcMaterialLayerSet ls, IfcWallTypeEnum type) : base(ls.mDatabase)
 {
     Name = name; mPredefinedType = type; MaterialSelect = ls;
 }
示例#9
0
 internal IfcWallType(DatabaseIfc db, IfcWallType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
示例#10
0
 internal IfcWallType(DatabaseIfc db, IfcWallType t)
     : base(db,t)
 {
     mPredefinedType = t.mPredefinedType;
 }
示例#11
0
 public IfcWallType(DatabaseIfc m, string name, IfcWallTypeEnum type)
     : base(m)
 {
     Name = name; mPredefinedType = type;
 }
示例#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;
 }
示例#13
0
 public IfcWallType(DatabaseIfc db, string name, IfcWallTypeEnum type) : base(db)
 {
     Name = name; PredefinedType = type;
 }
示例#14
0
 internal IfcWall(DatabaseIfc db, IfcWall w, IfcOwnerHistory ownerHistory, bool downStream) : base(db, w, ownerHistory, downStream)
 {
     mPredefinedType = w.mPredefinedType;
 }
示例#15
0
 internal IfcWallType(DatabaseIfc db, IfcWallType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
示例#16
0
 internal IfcWallType(DatabaseIfc db, IfcWallType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
示例#17
0
 internal IfcWall(DatabaseIfc db, IfcWall w, DuplicateOptions options) : base(db, w, options)
 {
     mPredefinedType = w.mPredefinedType;
 }
示例#18
0
 /// <summary>
 /// Construct a IfcWallType with all required attributes.
 /// </summary>
 public IfcWallType(IfcGloballyUniqueId globalId, IfcWallTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
示例#19
0
 public IfcWallType(string name, IfcMaterialLayerSet ls, IfcWallTypeEnum type)
     : base(ls.mDatabase)
 {
     Name = name; mPredefinedType = type; MaterialSelect = ls;
 }
示例#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;
 }
示例#21
0
 internal IfcWall(DatabaseIfc db, IfcWall w)
     : base(db, w)
 {
     mPredefinedType = w.mPredefinedType;
 }
示例#22
0
 internal IfcWall(DatabaseIfc db, IfcWall w) : base(db, w)
 {
     mPredefinedType = w.mPredefinedType;
 }
示例#23
0
 public IfcWallType(DatabaseIfc m, string name, IfcWallTypeEnum type) : base(m)
 {
     Name = name; mPredefinedType = type;
 }
示例#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)
 {
 }
示例#25
0
 internal IfcWall(DatabaseIfc db, IfcWall w, bool downStream) : base(db, w, downStream)
 {
     mPredefinedType = w.mPredefinedType;
 }
示例#26
0
		internal IfcWall(IfcWall w) : base(w) { mPredefinedType = w.mPredefinedType; }