Vcl.Grids.TStringGrid.RowMoved

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

DYNAMIC void __fastcall RowMoved(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 OnRowMoved event.

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

Generates an OnRowMoved event.

RowMoved is called immediately after a row in the grid changes position. It overrides the inherited method to generate an OnRowMoved event. Descendants of TCustomDrawGrid can override this method to make internal adjustments or to block the OnRowMoved event.

See Also