MOVE_ROW message
Description | Moves a row in a control | |||||
Applies To | Edit Table | |||||
Syntax | x = Send_Message( controlID, "MOVE_ROW", fromIndex, toIndex ) | |||||
Parameters |
| |||||
Returns | New position of the row |
E.g.
0001 * // EditTable MOVE_ROW message example to move the
0002 * // row at position 2 to position 4
0003
0004 edtID = @window : ".TABLE_1"
0005 fromRow = 2
0006 toRow = 4
0007
0008 call send_Message( edtID, "MOVE_ROW", fromRow, toRow )
0002 * // row at position 2 to position 4
0003
0004 edtID = @window : ".TABLE_1"
0005 fromRow = 2
0006 toRow = 4
0007
0008 call send_Message( edtID, "MOVE_ROW", fromRow, toRow )
No comments:
Post a Comment