Property Boolean pbCheckbox
| Read Access: | Get pbCheckbox to BooleanVariable |
| Write Access: | Set pbCheckbox to BooleanVariable/Value |
Set to True to display a checkbox for all grid cells in this column. The psCheckboxTrue and psCheckboxFalse properties specify the grid datasource values for a column that correspond to a checked or unchecked cell.
To determine whether a checkbox column is checked, use RowValue to get the value of the column, then compare it to the psCheckBoxTrue value:
String sTrueValue sStatus
Get psCheckboxTrue to sTrueValue
Get RowValue of oCustomer_Status iRow to sStatus
If (sStatus = sTrueValue) Begin
:
End