Represents a property set containing properties and nested property sets. Property sets organize related properties together (e.g., material properties, geometry properties).
const propertySet: T8PropertySet<T8Unit> = { name: "Pset_WallCommon", properties: { "IsExternal": { value: true, type: "IfcBoolean" }, "LoadBearing": { value: true, type: "IfcBoolean" } }, sets: {}}; Copy
const propertySet: T8PropertySet<T8Unit> = { name: "Pset_WallCommon", properties: { "IsExternal": { value: true, type: "IfcBoolean" }, "LoadBearing": { value: true, type: "IfcBoolean" } }, sets: {}};
The type used to represent units of measurement
The name of the property set
Collection of properties in this set. Can be a single property or an array of properties (when conflicts exist).
Nested property sets contained within this set
Represents a property set containing properties and nested property sets. Property sets organize related properties together (e.g., material properties, geometry properties).
Example