Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Tables Class / Find Method
An integer value indicates the row index.
An integer value indicates the column index.


In This Topic
    Find Method (Tables)
    In This Topic
    Find the table which contains the specified cell.
    Syntax
    'Declaration
     
    
    Public Function Find( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Table
    'Usage
     
    
    Dim instance As Tables
    Dim row As Integer
    Dim column As Integer
    Dim value As Table
     
    value = instance.Find(row, column)
    public Table Find( 
       int row,
       int column
    )

    Parameters

    row
    An integer value indicates the row index.
    column
    An integer value indicates the column index.

    Return Value

    The Table object which contains the specified cell.
    See Also