Properties of block table item
export interface IBlockTablePropertyItemOptions extends IPropertyItemOptionsBase { entries?: Map<string, IBlockTableEntryInfo>; hiddenLabel?: boolean; onOperationClick?: (block: string, operation: BlockTableOperationType) => void; title?: LocalizedString; tooltip?: LocalizedString;} Copy
export interface IBlockTablePropertyItemOptions extends IPropertyItemOptionsBase { entries?: Map<string, IBlockTableEntryInfo>; hiddenLabel?: boolean; onOperationClick?: (block: string, operation: BlockTableOperationType) => void; title?: LocalizedString; tooltip?: LocalizedString;}
Optional
Initial enabled state of property item. If undefined, it will default to true.
Map of block entries in the block table.
If true label text will be hidden. It will be visible by default.
This callback is called when UI control operation is selected from the UI.
Optional styling overrides for the item.
Localized title of the property item.
Tooltip description of the property item.
Initial visibility state of property item. If undefined, it will default to true.
Properties of block table item
Source