Vcl.DBGrids.TCustomDBGrid.ColumnMoved

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ColumnMoved(FromIndex, ToIndex: Longint); override;

C++

DYNAMIC void __fastcall ColumnMoved(int FromIndex, int ToIndex);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.DbGrids.pas
Vcl.DBGrids.hpp
Vcl.DBGrids TCustomDBGrid

Description

Generates an OnColumnMoved event.

Applications cannot directly call ColumnMoved. It is exposed as a protected method so that descendants can call the OnColumnMoved event handler in response to other events or override the response after a column in the grid is moved.

See Also