List Pane button entry
export interface IListPaneBoolEntry extends IListPaneEntry { readonly enabled: boolean; readonly value: boolean; setEnabled(enabled: true): void; setTooltip(tooltip: BasicTooltipContent): void; setValue(value: boolean): void;} Copy
export interface IListPaneBoolEntry extends IListPaneEntry { readonly enabled: boolean; readonly value: boolean; setEnabled(enabled: true): void; setTooltip(tooltip: BasicTooltipContent): void; setValue(value: boolean): void;}
Readonly
Enabled state of the entry.
Sequence index of the entry.
Slot that owns the entry.
Type of the entry.
Value of the entry.
Visibility state of the entry.
New enabled state.
Updates enabled state of the entry.
New tooltip.
Updates tooltip of the entry.
New value.
Updates value of the entry.
Updates visibility of the entry.
List Pane button entry
Source