Esempio n. 1
0
 public IfcBuildingElementPartType(DatabaseIfc m, string name, IfcBuildingElementPartTypeEnum type) : base(m)
 {
     Name = name; if (mDatabase.mRelease < ReleaseVersion.IFC4)
     {
         throw new Exception("XXX Only valid in IFC4 or newer!");
     }
     mPredefinedType = type;
 }
Esempio n. 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:
            case 8:
                base.Parse(propIndex, value, nestedIndex);
                return;

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

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
Esempio n. 3
0
 internal IfcBuildingElementPartType(DatabaseIfc db, IfcBuildingElementPartType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Esempio n. 4
0
 public IfcBuildingElementPartType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcBuildingElementPartTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this._PredefinedType = __PredefinedType;
 }
Esempio n. 5
0
 internal IfcBuildingElementPart(DatabaseIfc db, IfcBuildingElementPart p, DuplicateOptions options) : base(db, p, options)
 {
     mPredefinedType = p.mPredefinedType;
 }
Esempio n. 6
0
 internal IfcBuildingElementPartType(DatabaseIfc db, IfcBuildingElementPartType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Esempio n. 7
0
		public IfcBuildingElementPartType(DatabaseIfc db, string name, IfcBuildingElementPartTypeEnum type) : base(db) { Name = name; PredefinedType = type; }
 public IfcBuildingElementPartType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcBuildingElementPartTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
Esempio n. 9
0
 public IfcBuildingElementPart(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcBuildingElementPartTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
 /// <summary>
 /// Construct a IfcBuildingElementPartType with all required attributes.
 /// </summary>
 public IfcBuildingElementPartType(IfcGloballyUniqueId globalId, IfcBuildingElementPartTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
Esempio n. 11
0
		internal IfcBuildingElementPartType(DatabaseIfc m, string name, IfcBuildingElementPartTypeEnum type) : base(m) { Name = name; if (mDatabase.mSchema == Schema.IFC2x3) throw new Exception("XXX Only valid in IFC4 or newer!"); mPredefinedType = type; }
Esempio n. 12
0
		internal IfcBuildingElementPartType(IfcBuildingElementPartType t) : base(t) { mPredefinedType = t.mPredefinedType; }
Esempio n. 13
0
 internal IfcBuildingElementPartType(DatabaseIfc db, IfcBuildingElementPartType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Esempio n. 14
0
 internal IfcBuildingElementPart(DatabaseIfc db, IfcBuildingElementPart p)
     : base(db, p)
 {
     mPredefinedType = p.mPredefinedType;
 }