The options used to make a checkbox item.

interface ICheckbox {
    caption: string;
    checked: boolean;
    className: string;
    label: string;
}

Properties

caption: string

The caption for the checkbox.

checked: boolean

The initial checkbox state.

className: string

The extra class name for the checkbox.

label: string

The label for the checkbox.