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