Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / ITableRows Interface / Move Method
An integer value indicates the position to move.
An integer value indicates the target position.
An integer value indicates the moved row count.


In This Topic
    Move Method (ITableRows)
    In This Topic
    Moves table row(s) at the specified position to other position.
    Syntax
    'Declaration
     
    
    Function Move( _
       ByVal row As Integer, _
       ByVal toRow As Integer, _
       ByVal count As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As ITableRows
    Dim row As Integer
    Dim toRow As Integer
    Dim count As Integer
    Dim value As Boolean
     
    value = instance.Move(row, toRow, count)
    bool Move( 
       int row,
       int toRow,
       int count
    )

    Parameters

    row
    An integer value indicates the position to move.
    toRow
    An integer value indicates the target position.
    count
    An integer value indicates the moved row count.

    Return Value

    true if the moving is done successful, false otherwise.
    See Also