Vcl.Grids.TCustomGrid.RowCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property RowCount: Longint read FRowCount write SetRowCount default 5;

C++

__property int RowCount = {read=FRowCount, write=SetRowCount, default=5};

Properties

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

Description

Specifies the number of rows in the grid.

Read RowCount to determine the number of entries in the RowHeights array. Set RowCount to add or delete rows at the bottom of the grid. The value of RowCount includes any fixed rows at the top of the grid as well as the scrollable rows in the body of the grid.

See Also

Code Examples