Swap Method
Description
Swaps the two list items specified by their positions.
Syntax
Visual Basic
Public Sub Swap( _
   ByVal Pos1 As Long, _
   ByVal Pos2 As Long _
) 
Parameters
Pos1
The position of the first element to be swapped with the second element.
Pos2
The position of the second element to be swapped with the first element.
See Also