api-31
2014-12-08T19:25:59Z
Hi!

Is it possible to select Check Box Cells manually per code?

For example: iRow.Cells[0].CheckBox.Selected = true

Thanks in advance!
Igor/10Tec
2014-12-09T07:48:24Z
If you need to tick the check mark, you need to set the cell value property to True as the check box control reflects the current cell value:

iRow.Cells[0].Value = true;
api-31
2014-12-09T19:36:11Z
Thanks, sometimes it is the most obvious thing you don't see...

Greetings,
api-31