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