Vcl.Grids.TDrawGrid.OnColumnMoved

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnColumnMoved: TMovedEvent read FOnColumnMoved write FOnColumnMoved;

C++

__property OnColumnMoved;

Properties

Type Visibility Source Unit Parent
event published
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TDrawGrid

Description

Occurs immediately after the position of a column changes.

Vcl.Grids.TDrawGrid.OnColumnMoved inherits from Vcl.Grids.TCustomDrawGrid.OnColumnMoved. All content below this line refers to Vcl.Grids.TCustomDrawGrid.OnColumnMoved.

Occurs immediately after the position of a column changes.

Use OnColumnMoved to perform special processing when the position of a grid column changes. Columns can be moved programmatically or by user manipulation. OnColumnMoved does not occur unless the Options property includes goColMoving.

See Also