|
|
|
| acCheckGroupBox component.
|
| type
|
| TCheckBoxState = (cbUnchecked, cbChecked, cbGrayed);
|
|
|
| property State: TCheckBoxState;
|
| The State property determines the various states a check box control (on top of group box) can have. These are the possible values:
|
|
|
| Value | Meaning
|
| cbUnchecked | The check box has no check mark indicating the user hasn't selected the option.
|
| cbChecked | The check box has a check mark in it indicating the user has selected the option.
|
| cbGrayed | The check box is gray indicating a third state that is neither checked nor unchecked. Your application determines the meaning of a grayed check box.
|
| Checked property and OnCheckBoxClick event.
|