Vcl.Grids.TCustomDrawGrid.OnColumnMoved

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnColumnMoved: TMovedEvent read FOnColumnMoved write FOnColumnMoved;

C++

__property TMovedEvent OnColumnMoved = {read=FOnColumnMoved, write=FOnColumnMoved};

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 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