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

TBasedxReportLink.MakeHardDelimiters(TdxReportCells,TList,TList) Method

Creates report page breaks.

#Declaration

Delphi
procedure MakeHardDelimiters(AReportCells: TdxReportCells; AHorzDelimiters: TList; AVertDelimiters: TList); virtual;

#Parameters

Name Type
AReportCells TdxReportCells
AHorzDelimiters TList
AVertDelimiters TList

#Remarks

The MakeHardDelimiters method ignores a report page’s bounds. It splits a report at a custom position determined by a particular report column or row (see the TAbstractdxGridReportLink.AddHorizontalPageBreak and TAbstractdxGridReportLink.AddPageBreak methods).

The MakeHardDelimiters method is in effect, if the TAbstractdxGridReportLink.UseCustomPageBreaks (TcxTreeListReportLinkOptionsPagination.Custom, TdxCustomTableControlReportLinkOptionsPagination.Custom) option is active.

This method is overridden in the respective descendants, to provide a behavior specific to a particular report link.

AReportCells specifies the collection of report rows.

AHorzDelimiters specifies the collection of page breaks that split a report by columns.

AVertDelimiters specifies the collection of page breaks that split a report by rows.

See Also