Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Workbook Class / FindTable Method
The table name.
The sheet.


In This Topic
    FindTable Method (Workbook)
    In This Topic
    Gets the table with a specified name.
    Syntax
    'Declaration
     
    Public Function FindTable( _
       ByVal tableName As String, _
       ByRef sheet As Worksheet _
    ) As SheetTable
    'Usage
     
    Dim instance As Workbook
    Dim tableName As String
    Dim sheet As Worksheet
    Dim value As SheetTable
     
    value = instance.FindTable(tableName, sheet)
    public SheetTable FindTable( 
       string tableName,
       out Worksheet sheet
    )

    Parameters

    tableName
    The table name.
    sheet
    The sheet.

    Return Value

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