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


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

    Parameters

    tableName
    The table name 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