Vcl.Grids.TCustomGrid.SizeChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SizeChanged(OldColCount, OldRowCount: Longint); dynamic;

C++

DYNAMIC void __fastcall SizeChanged(int OldColCount, int OldRowCount);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

Description

Responds to changes in the size of the grid.

SizeChanged provides the interface for a method that responds to changes in the number of rows or columns in the grid. The SizeChanged method of TCustomGrid does nothing. Descendants of TCustomGrid override this method to make internal adjustments or generate events.

See Also