Fired after a column is moved by dragging on the header.
Public Event AfterMoveColumn As AfterMoveColumnEventHandler
Grid Object
The following parameters are available:
Parameter | Description |
Col | The index of the column that was moved. |
Position | The new position of the column. |
The user may move rows and columns using the mouse, depending on the setting of the AllowUserReorder property.
This event is useful if you want to synchronize some other user-interface element to the columns on a grid, or to keep track of a column's position.
To prevent the user from moving certain columns to certain positions, use the BeforeMoveColumn event instead.