Interface PopoutCheckboxOptions

Represents options describing how to render a checkbox. See PopoutComponentFactory.checkbox.

interface PopoutCheckboxOptions {
    checked: boolean;
    enabled: boolean;
    name: string;
    text: string;
    tooltip?: string;
}

Properties

checked: boolean

Specifies whether the checkbox is checked.

enabled: boolean

Specifies whether the checkbox is enabled.

name: string

Specifies the name that identifies the component.

text: string

Specifies the text to display next to the checkbox.

tooltip?: string

Specifies the tooltip to display. If undefined, no tooltip is shown.