Web.DBWeb.TDSTableProducer.MaxRows
Delphi
property MaxRows: Integer read FMaxRows write SetMaxRows default 20;
C++
__property int MaxRows = {read=FMaxRows, write=SetMaxRows, default=20};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Web.DBWeb.pas Web.DBWeb.hpp |
Web.DBWeb | TDSTableProducer |
Description
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.