Occurs immediately after the position of a row changes.type TMovedEvent = procedure (Sender: TObject; FromIndex, ToIndex: Longint) of object;
property OnRowMoved: TMovedEvent;DescriptionWrite an OnRowMoved event handler to provide special processing whenever a row in the grid changes position. Rows can be moved programmatically or by user manipulation. The FromIndex parameter is the old index of the row, and the ToIndex parameter is the new index. OnRowMoved does not occur unless the Options property includes goRowMoving.
看看帮助吧~~~