API:Bde.DBBdeWeb.TQueryTableProducer.MaxRows

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property MaxRows: Integer read FMaxRows write SetMaxRows default 20;

C++

__property MaxRows = {default=20};

Properties

Type Visibility Source Unit Parent
property published
Bde.DBBdeWeb.pas
Bde.DBBdeWeb.hpp
Bde.DBBdeWeb TQueryTableProducer

Description

Specifies the maximum number of rows that appear in the HTML table.

Bde.DBBdeWeb.TQueryTableProducer.MaxRows inherits from Web.DBWeb.TDSTableProducer.MaxRows. All content below this line refers to Web.DBWeb.TDSTableProducer.MaxRows.

Specifies the maximum number of rows that appear in the HTML table. Set MaxRows to change the upper limit on the size of the HTML table produced to represent the DataSet. MaxRows is initialized to 20.

If DataSet contains more than MaxRows records, only the first MaxRows records appear in the HTML commands produced by Content. If DataSet contains fewer than MaxRows records, the HTML table produced by TDSTableProducer will contain only enough rows to display all the records in DataSet.

See Also