Vcl.Grids.TCustomDrawGrid.OnRowMoved
Delphi
property OnRowMoved: TMovedEvent read FOnRowMoved write FOnRowMoved;
C++
__property TMovedEvent OnRowMoved = {read=FOnRowMoved, write=FOnRowMoved};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | protected | Vcl.Grids.pas Vcl.Grids.hpp |
Vcl.Grids | TCustomDrawGrid |
Description
Occurs immediately after the position of a row changes.
Write 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. OnRowMoved does not occur unless the Options property includes goRowMoving
.
See Also
Code Examples