[]
Returns the TableCell object at the specified row and column in the containing RenderTable, or null if that object has not been initialized.
public TableCell FindCell(int row, int col)
Type | Name | Description |
---|---|---|
int | row | The 0-based row index of the cell. |
int | col | The 0-based column index of the cell. |
Type | Description |
---|---|
TableCell | The TableCell object at the specified row and column, or null. |
The cells of a table are not initialized unless they are accessed via the indexer property on the cells collection. Unlike the indexer, this method can be used to test whether a TableCell object has been created for a cell, without initializing it.