'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)
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.