Interface PropertySetParams

Parameters used to define a PropertySet.

These parameters are:

For detailed usage, refer to @xeokit/sdk/data.

interface PropertySetParams {
    id: string;
    name: string;
    properties: PropertyParams[];
    type: string;
}

Properties

Properties

id: string

The unique identifier for the PropertySet.

PropertySets are stored by this ID in Data.propertySets and DataModel.propertySets.

name: string

The human-readable name of the PropertySet.

properties: PropertyParams[]

The collection of Properties within the PropertySet.

type: string

The type of this PropertySet.