Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / MoveTable Method / MoveTable(SheetTable,Int32,Int32) Method
The table instance to move.
The new row index.
The new column index.


In This Topic
    MoveTable(SheetTable,Int32,Int32) Method
    In This Topic
    Changes the table location.
    Syntax
    'Declaration
     
    Public Overloads Sub MoveTable( _
       ByVal table As SheetTable, _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim table As SheetTable
    Dim row As Integer
    Dim column As Integer
     
    instance.MoveTable(table, row, column)
    public void MoveTable( 
       SheetTable table,
       int row,
       int column
    )

    Parameters

    table
    The table instance to move.
    row
    The new row index.
    column
    The new column index.
    Remarks
    The row and column index should be the top, left table cell.
    See Also