SSpread.AfterColMove Event
Occurs after the user moves a column by dragging and dropping.
The following child objects are attached to the Event object.
| Type | Name | Description |
|---|---|---|
| Number | Col | Column number of the column to move |
| Number | ColDest | Column number of the destination column |
Added since Ver.5.0.2
Example of usage
AllowColMove = $TRUE;
Function OnAfterColMove(e) {
MessageBox(strf("Moved from % 1st column to % 2nd column", e.Col, e.ColDest));
}
Related Item
AllowColMove property, BeforeColMove event