FMX.Grid.TCustomGrid.RowCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property RowCount: Integer read GetRowCount write SetRowCount default 100;

C++

__property int RowCount = {read=GetRowCount, write=SetRowCount, default=100};

Properties

Type Visibility Source Unit Parent
property public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TCustomGrid

Description

Specifies the number of rows in the grid.

The value of RowCount includes the scrollable rows in the grid, but not the fixed row with the headers.

  • Read RowCount to determine the number of rows in the grid.
  • Set RowCount to add or delete rows at the bottom of the grid.

See Also