FMX.Grid.TGridModel.OnColumnMoved

From RAD Studio API Documentation
Jump to: navigation, search

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:

  • Column is the moved column.
  • FromIndex is the previous column number of the column.
  • ToIndex is the new column number of the column.

See Also