Reports for WinForms | ComponentOne
C1.C1Report.4 Assembly / C1.C1Preview Namespace / TableRowCollection Class / FindRow Method
The 0-based index of the row in the containing table.

In This Topic
    FindRow Method
    In This Topic
    Returns the TableRow with the specified index (the Ordinal of the row), or null if that TableRow object has not been initialized.
    Syntax
    'Declaration
     
    Public Function FindRow( _
       ByVal index As Integer _
    ) As TableRow
    public TableRow FindRow( 
       int index
    )

    Parameters

    index
    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