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

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public TableCell FindCell(
	int row,
	int col
)
Visual Basic
Public Function FindCell ( _
	row As Integer, _
	col As Integer _
) As TableCell

Parameters

row
Type: System..::..Int32
The 0-based row index of the cell.
col
Type: System..::..Int32
The 0-based column index of the cell.

Return Value

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.

See Also