I haven't worked with this much, but....
I think the cells collect of a row is a collection of base cell types. Your cell 3 may very well be a checkbox cell, but the collection doesn't know that because it has to support all possible cell types. You may be able to cast that cell to a checkbox cell (I don't know the exact syntax) and that class should have a "checked" or similar property.
-
Peter