Vcl.StdCtrls.TCustomCheckBox.State
Delphi
property State: TCheckBoxState read FState write SetState default cbUnchecked;
C++
__property TCheckBoxState State = {read=FState, write=SetState, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | protected | Vcl.StdCtrls.pas Vcl.StdCtrls.hpp |
Vcl.StdCtrls | TCustomCheckBox |
Description
Indicates whether the check box is selected, cleared, or dimmed.
Use State to determine whether the check box is selected (cbChecked
), cleared (cbUnchecked
), or dimmed (cbGrayed
).
See Also
Code Examples