コード例 #1
0
ファイル: IfcFooting.cs プロジェクト: Artoymyp/XbimEssentials
        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:
                    base.IfcParse(propIndex, value);
                    break;
                case 8:
                    _predefinedType = (IfcFootingTypeEnum) Enum.Parse(typeof (IfcFootingTypeEnum), value.EnumVal, true);
                    break;

                default:
                    this.HandleUnexpectedAttribute(propIndex, value); break;
            }
        }
コード例 #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:
                base.IfcParse(propIndex, value);
                break;

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

            default:
                this.HandleUnexpectedAttribute(propIndex, value); break;
            }
        }
コード例 #3
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:
                base.Parse(propIndex, value, nestedIndex);
                return;

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

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
コード例 #4
0
ファイル: IFC F.cs プロジェクト: xeolabs/GeometryGymIFC
 internal IfcFooting(DatabaseIfc db, IfcFooting f, DuplicateOptions options) : base(db, f, options)
 {
     mPredefinedType = f.mPredefinedType;
 }
コード例 #5
0
 public IfcFootingType(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcIdentifier?__ApplicableOccurrence, IfcPropertySetDefinition[] __HasPropertySets, IfcRepresentationMap[] __RepresentationMaps, IfcLabel?__Tag, IfcLabel?__ElementType, IfcFootingTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ApplicableOccurrence, __HasPropertySets, __RepresentationMaps, __Tag, __ElementType)
 {
     this._PredefinedType = __PredefinedType;
 }
コード例 #6
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal IfcFootingType(DatabaseIfc db, IfcFootingType t)
     : base(db,t)
 {
     mPredefinedType = t.mPredefinedType;
 }
コード例 #7
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 public IfcFootingType(DatabaseIfc m, string name, IfcFootingTypeEnum type)
     : base(m)
 {
     Name = name; mPredefinedType = type;
 }
コード例 #8
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal IfcFooting(DatabaseIfc db, IfcFooting f)
     : base(db,f)
 {
     mPredefinedType = f.mPredefinedType;
 }
コード例 #9
0
ファイル: IfcFootingType.g.cs プロジェクト: vdubya/IFC-gen
 public IfcFootingType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcFootingTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType)
 {
     PredefinedType = predefinedType;
 }
コード例 #10
0
ファイル: IfcFootingType.g.cs プロジェクト: vdubya/IFC-gen
 /// <summary>
 /// Construct a IfcFootingType with all required attributes.
 /// </summary>
 public IfcFootingType(IfcGloballyUniqueId globalId, IfcFootingTypeEnum predefinedType) : base(globalId)
 {
     PredefinedType = predefinedType;
 }
コード例 #11
0
ファイル: IfcFooting.g.cs プロジェクト: vdubya/IFC-gen
 public IfcFooting(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcFootingTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag)
 {
     PredefinedType = predefinedType;
 }
コード例 #12
0
ファイル: IFC F.cs プロジェクト: xeolabs/GeometryGymIFC
 internal IfcFootingType(DatabaseIfc db, IfcFootingType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
コード例 #13
0
 public IfcFooting(IfcGloballyUniqueId __GlobalId, IfcOwnerHistory __OwnerHistory, IfcLabel?__Name, IfcText?__Description, IfcLabel?__ObjectType, IfcObjectPlacement __ObjectPlacement, IfcProductRepresentation __Representation, IfcIdentifier?__Tag, IfcFootingTypeEnum __PredefinedType)
     : base(__GlobalId, __OwnerHistory, __Name, __Description, __ObjectType, __ObjectPlacement, __Representation, __Tag)
 {
     this._PredefinedType = __PredefinedType;
 }
コード例 #14
0
ファイル: IFC F.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcFootingType(IfcFootingType t) : base(t) { mPredefinedType = t.mPredefinedType; }
コード例 #15
0
ファイル: IFC F.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcFooting(IfcFooting b) : base(b) { mPredefinedType = b.mPredefinedType; }
コード例 #16
0
ファイル: IFC F.cs プロジェクト: xeolabs/GeometryGymIFC
 public IfcFootingType(string name, IfcMaterialProfileSet mps, IfcFootingTypeEnum type) : base(mps.mDatabase)
 {
     Name = name; mPredefinedType = type; MaterialSelect = mps;
 }
コード例 #17
0
ファイル: IFC F.cs プロジェクト: xeolabs/GeometryGymIFC
 public IfcFootingType(DatabaseIfc m, string name, IfcFootingTypeEnum type) : base(m)
 {
     Name = name; mPredefinedType = type;
 }