'Declaration
Function Move( _ ByVal column As Integer, _ ByVal toColumn As Integer, _ ByVal count As Integer _ ) As Boolean
'Usage
Dim instance As ITableColumns Dim column As Integer Dim toColumn As Integer Dim count As Integer Dim value As Boolean value = instance.Move(column, toColumn, count)
Parameters
- column
- An integer value indicates the position to move.
- toColumn
- An integer value indicates the target position.
- count
- An integer value indicates the moved column count.
Return Value
true
if the moving is done successful, false
otherwise.