Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / ITableRows Interface / MoveOut Method
An integer value indicates the position to move.
An integer value indicates the moved row count.
A boolean value indicates whether to move the move direction is below or above table.


In This Topic
    MoveOut Method
    In This Topic
    Moves table row(s) at the specified position to the first row below or above this Table.
    Syntax
    'Declaration
     
    
    Function MoveOut( _
       ByVal row As Integer, _
       ByVal count As Integer, _
       Optional ByVal moveDown As Boolean _
    ) As Boolean
    'Usage
     
    
    Dim instance As ITableRows
    Dim row As Integer
    Dim count As Integer
    Dim moveDown As Boolean
    Dim value As Boolean
     
    value = instance.MoveOut(row, count, moveDown)
    bool MoveOut( 
       int row,
       int count,
       bool moveDown
    )

    Parameters

    row
    An integer value indicates the position to move.
    count
    An integer value indicates the moved row count.
    moveDown
    A boolean value indicates whether to move the move direction is below or above table.

    Return Value

    true if the moving is done successful, false otherwise.
    Remarks
    Moved rows will be removed from this Table.
    See Also