Beispiel #1
0
 internal IfcGeographicElementType(DatabaseIfc m, string name, IfcGeographicElementTypeEnum type) : base(m)
 {
     Name = name; mPredefinedType = type; if (m.mRelease == ReleaseVersion.IFC2x3)
     {
         throw new Exception(KeyWord + " only supported in IFC4!");
     }
 }
Beispiel #2
0
 public IfcGeographicElementType(DatabaseIfc m, string name, IfcGeographicElementTypeEnum type) : base(m)
 {
     Name = name; mPredefinedType = type; if (m.mRelease < ReleaseVersion.IFC4)
     {
         throw new Exception(StepClassName + " only supported in IFC4!");
     }
 }
        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 = (IfcGeographicElementTypeEnum)System.Enum.Parse(typeof(IfcGeographicElementTypeEnum), value.EnumVal, true);
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
 public IfcGeographicElementType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcGeographicElementTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this._PredefinedType = __PredefinedType;
 }
Beispiel #5
0
 internal IfcGeographicElementType(DatabaseIfc db, IfcGeographicElementType t) : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Beispiel #6
0
 internal IfcGeographicElement(DatabaseIfc db, IfcGeographicElement e) : base(db, e)
 {
     mPredefinedType = e.mPredefinedType;
 }
Beispiel #7
0
 internal IfcGeographicElementType(DatabaseIfc db, IfcGeographicElementType t)
     : base(db,t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Beispiel #8
0
 internal IfcGeographicElementType(DatabaseIfc db, IfcGeographicElementType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Beispiel #9
0
		internal IfcGeographicElement(IfcGeographicElement e) : base(e) { mPredefinedType = e.mPredefinedType; }
 public IfcGeographicElement(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcGeographicElementTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
Beispiel #11
0
 public IfcGeographicElementType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcGeographicElementTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
Beispiel #12
0
 /// <summary>
 /// Construct a IfcGeographicElementType with all required attributes.
 /// </summary>
 public IfcGeographicElementType(IfcGloballyUniqueId globalId, IfcGeographicElementTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
Beispiel #13
0
 public IfcGeographicElementType(DatabaseIfc db, string name, IfcGeographicElementTypeEnum type) : base(db)
 {
     Name = name; PredefinedType = type;
 }
Beispiel #14
0
 internal IfcGeographicElementType(DatabaseIfc m, string name, IfcGeographicElementTypeEnum type)
     : base(m)
 {
     Name = name; mPredefinedType = type; if (m.mRelease == ReleaseVersion.IFC2x3) throw new Exception(KeyWord + " only supported in IFC4!");
 }
Beispiel #15
0
		internal IfcGeographicElementType(IfcGeographicElementType o) : base(o) { mPredefinedType = o.mPredefinedType; }
Beispiel #16
0
		internal IfcGeographicElementType(DatabaseIfc m, string name, IfcGeographicElementTypeEnum type) : base(m) { Name = name; mPredefinedType = type; if (m.mSchema == Schema.IFC2x3) throw new Exception(mKW + " only supported in IFC4!"); }
Beispiel #17
0
 internal IfcGeographicElement(IfcGeographicElement e) : base(e)
 {
     mPredefinedType = e.mPredefinedType;
 }
Beispiel #18
0
 internal IfcGeographicElement(DatabaseIfc db, IfcGeographicElement e, DuplicateOptions options) : base(db, e, options)
 {
     mPredefinedType = e.mPredefinedType;
 }
Beispiel #19
0
 internal IfcGeographicElementType(IfcGeographicElementType o) : base(o)
 {
     mPredefinedType = o.mPredefinedType;
 }
Beispiel #20
0
 internal IfcGeographicElementType(DatabaseIfc db, IfcGeographicElementType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Beispiel #21
0
 internal IfcGeographicElement(DatabaseIfc db, IfcGeographicElement e)
     : base(db, e,false)
 {
     mPredefinedType = e.mPredefinedType;
 }