Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Table Class / MoveRows(Int32,Int32,Int32) Method
An integer value indicates the index to move.
An integer value indicates the target index.
An integer value indicates the moved row count.


In This Topic
    MoveRows(Int32,Int32,Int32) Method
    In This Topic
    Moves table row(s) at the specified index to other index.
    Syntax
    'Declaration
     
    
    Public Function MoveRows( _
       ByVal index As Integer, _
       ByVal toIndex As Integer, _
       ByVal count As Integer _
    ) As ActionResult(Of Table)
    'Usage
     
    
    Dim instance As Table
    Dim index As Integer
    Dim toIndex As Integer
    Dim count As Integer
    Dim value As ActionResult(Of Table)
     
    value = instance.MoveRows(index, toIndex, count)

    Parameters

    index
    An integer value indicates the index to move.
    toIndex
    An integer value indicates the target index.
    count
    An integer value indicates the moved row count.

    Return Value

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