Vcl.StdCtrls.TCheckBoxState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCheckBoxState = (cbUnchecked, cbChecked, cbGrayed);

C++

enum DECLSPEC_DENUM TCheckBoxState : unsigned char { cbUnchecked, cbChecked, cbGrayed };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls Vcl.StdCtrls

Description

TCheckBoxState indicates the state of a check box control.

Following are the possible values of TCheckBoxState:



Value Meaning

cbUnchecked

The check box has no check mark, indicating that the user has not selected the option.

cbChecked

The check box has a check mark in it, indicating that the user has selected the option.

cbGrayed

The check box has a check mark in it, but it is grayed.