Properties of data table item

interface IDataTablePropertyItemOptions {
    enable?: boolean;
    entries?: IDataTablePropertyItemEntry[][];
    title?: LocalizedString;
    visible?: boolean;
}

Hierarchy (View Summary)

Properties

enable?: boolean

Initial enabled state of property item. If undefined, it will default to true.

List of default data table entries

Localized title of the property item.

visible?: boolean

Initial visibility state of property item. If undefined, it will default to true.