Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TMS Grid Pack
How can I get the state of a checkbox added with grid.AddCheckBox ?

var
  state: Boolean;
grid.GetCheckBoxState(col,row,state);
if state then
  ShowMessage('CheckBox is checked')
else
  ShowMessage('CheckBox is not checked');