FMX.Grid.TGridModel.OnColumnMoved
Delphi
property OnColumnMoved: TColumnMovedEvent read FOnColumnMoved write FOnColumnMoved;
C++
__property TColumnMovedEvent OnColumnMoved = {read=FOnColumnMoved, write=FOnColumnMoved};
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| event | public | FMX.Grid.pas FMX.Grid.hpp  | 
        FMX.Grid | TGridModel | 
Description
Occurs after the presentation completes the movement of a column started by MoveColumn.
The handler of OnColumnMoved receives the following parameters:
Columnis the moved column.FromIndexis the previous column number of the column.ToIndexis the new column number of the column.