public IfcFurnitureType(DatabaseIfc db, string name, IfcFurnitureTypeEnum type) : base(db, name) { mPredefinedType = type; if (mDatabase.mRelease < ReleaseVersion.IFC4 && string.IsNullOrEmpty(ElementType) && type != IfcFurnitureTypeEnum.NOTDEFINED) { ElementType = type.ToString(); } }
internal IfcFurnitureType(DatabaseIfc m, string name, IfcAssemblyPlaceEnum a, IfcFurnitureTypeEnum type) : base(m,name) { mAssemblyPlace = a; mPredefinedType = type; if (mDatabase.mRelease == ReleaseVersion.IFC2x3 && string.IsNullOrEmpty(ElementType) && type != IfcFurnitureTypeEnum.NOTDEFINED) ElementType = type.ToString(); }
internal IfcFurnitureType(DatabaseIfc db, IfcFurnitureType t) : base(db, t) { mAssemblyPlace = t.mAssemblyPlace; mPredefinedType = t.mPredefinedType; }
internal IfcFurniture(DatabaseIfc db, IfcFurniture f) : base(db, f) { mPredefinedType = f.mPredefinedType; }
public IfcFurniture(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcIdentifier tag, IfcFurnitureTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation, tag) { PredefinedType = predefinedType; }
internal IfcFurniture(IfcFurniture f) : base(f) { mPredefinedType = f.mPredefinedType; }
internal IfcFurnitureType(DatabaseIfc db, IfcFurnitureType t, DuplicateOptions options) : base(db, t, options) { mAssemblyPlace = t.mAssemblyPlace; mPredefinedType = t.mPredefinedType; }
internal IfcFurniture(DatabaseIfc db, IfcFurniture f, DuplicateOptions options) : base(db, f, options) { mPredefinedType = f.mPredefinedType; }
public IfcFurnitureType(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcIdentifier applicableOccurrence, List <IfcPropertySetDefinition> hasPropertySets, List <IfcRepresentationMap> representationMaps, IfcLabel tag, IfcLabel elementType, IfcAssemblyPlaceEnum assemblyPlace, IfcFurnitureTypeEnum predefinedType) : base(globalId, ownerHistory, name, description, applicableOccurrence, hasPropertySets, representationMaps, tag, elementType) { AssemblyPlace = assemblyPlace; PredefinedType = predefinedType; }