Returns the TableRow with the specified index (the Ordinal of the row), or null if that TableRow object has not been initialized.

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

Syntax

C#
public TableRow FindRow(
	int index
)
Visual Basic
Public Function FindRow ( _
	index As Integer _
) As TableRow

Parameters

index
Type: System..::..Int32
The 0-based index of the row in the containing table.

Return Value

The TableRow object or null.

Remarks

Physically, rows in a RenderTable are created when they are accessed using the indexer property on the Rows collection. This method may be used to test whether a physical TableRow object exists for a particular row index.

See Also