A property item which supports boolean properties
export interface IBoolPropertyItem extends IPropertyItemBase { readonly value: boolean; setTitle(title: LocalizedString | undefined): void; setTooltip(tooltip: BasicTooltipContent | undefined): void;} Copy
export interface IBoolPropertyItem extends IPropertyItemBase { readonly value: boolean; setTitle(title: LocalizedString | undefined): void; setTooltip(tooltip: BasicTooltipContent | undefined): void;}
If the item is enabled in the UI.
Readonly
Unique ID for the property item.
The parent pane id.
The type name of the target property.
Current value of the property item.
If the item should be visible in the UI.
Sets title of the property item.
Sets tooltip description of the property item.
A property item which supports boolean properties
Source