Vcl.Grids.TStringGrid.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.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TStringGrid

Description

Generates an OnColumnMoved event.

Vcl.Grids.TStringGrid.ColumnMoved inherits from Vcl.Grids.TCustomDrawGrid.ColumnMoved. All content below this line refers to Vcl.Grids.TCustomDrawGrid.ColumnMoved.

Generates an OnColumnMoved event.

ColumnMoved is called immediately after a column in the grid has moved. It overrides the inherited method to generate an OnColumnMoved event. Descendants of TCustomDrawGrid can override this method to make internal adjustments or to block the OnColumnMoved event.

See Also