Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCompositionReportLink.ContinuousPageIndexes Property

Specifies whether page numbering in a composition report is continuous.

#Declaration

Delphi
property ContinuousPageIndexes; default True;

#Property Value

Type Default
Boolean True

#Remarks

If the ContinuousPageIndexes property is set to True, pages of the composition report have continuous numbers: the first page, for instance, has number 1, the second page has number 2 and so on. The first page number is defined by the StartPageIndex property.

If ContinuousPageIndexes property is False, page numbering is continuous through every report link, but not through a composition report link, that is page numbering starts from the beginning for every report link. The starting page number for every report link is defined by the StartPageIndex property. Suppose the StartPageIndex property value is 3. Then, for instance, if a composition report link contains TdxDrawGridReportLink which draws the TDrawGrid control on two pages and TdxTeeChartReportLink which draws the TeeChart component on one page, page numbers for TdxDrawGridReportLink will be 3 and 4, and for TdxTeeChartReportLink will be 3 again.

Note

Setting the StartEachItemFromNewPage property to False automatically enables the continuous page numbering mode (the ContinuousPageIndexes property is set to True).

The default value of the ContinuousPageIndexes property is True.

See Also