Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / FindTable Method / FindTable(Int32,Int32) Method
The row index.
The column index.


In This Topic
    FindTable(Int32,Int32) Method
    In This Topic
    Gets the table of the specified cell.
    Syntax
    'Declaration
     
    Public Overloads Function FindTable( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As SheetTable
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As SheetTable
     
    value = instance.FindTable(row, column)
    public SheetTable FindTable( 
       int row,
       int column
    )

    Parameters

    row
    The row index.
    column
    The column index.

    Return Value

    The table instance if the cell belongs to a table; otherwise, null.
    See Also