[]
        
(Showing Draft Content)

C1.C1Preview.TableCellCollection.FindCell

FindCell Method

FindCell(int, int)

Returns the TableCell object at the specified row and column in the containing RenderTable, or null if that object has not been initialized.

Declaration
public TableCell FindCell(int row, int col)
Parameters
Type Name Description
int row

The 0-based row index of the cell.

int col

The 0-based column index of the cell.

Returns
Type Description
TableCell

The TableCell object at the specified row and column, or null.

Remarks

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.