blessed-components - v1.20.0
    Preparing search index...

    Interface CheckboxHandle

    Imperative handle returned by checkbox.

    interface CheckboxHandle {
        checked(): CheckboxState;
        focus(): void;
        toggle(): boolean;
        element: BoxElement;
        destroy(): void;
        setData(data: CheckboxData): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    element: BoxElement

    Underlying Blessed element available for standard element operations.

    Methods