C1.WPF.PrintDocument.4.6.2 Assembly / C1.C1Preview Namespace / TableCellCollection Class / FindCell Method
The 0-based row index of the cell.
The 0-based column index of the cell.

In This Topic
FindCell Method
In This Topic
Returns the TableCell object at the specified row and column in the containing RenderTable, or null if that object has not been initialized.
Syntax
'Declaration
 
Public Function FindCell( _
   ByVal row As Integer, _
   ByVal col As Integer _
) As TableCell
 

Parameters

row
The 0-based row index of the cell.
col
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