Skip to main content

TdxSpreadSheetTableViewOptionsPrintPagination.RowPageBreaks Property

Provides access to the list of custom page breaks that split up a specific worksheet‘s content horizontally.

Declaration

property RowPageBreaks: TList<Cardinal> read; write;

Property Value

Type
TList<T>

Remarks

The ExpressPrinting engine automatically inserts page breaks between populated rows in the source worksheet to split up the content horizontally between printout pages. The actual page break positions depends on sizes of populated rows and the height of the content area within the printout page layout. Refer to the worksheet’s OptionsPrint.Page property description for details on printout page layout customization.

Use the RowPageBreaks property to separate any number of populated rows from each other on individual printout pages. Call the RowPageBreaks.Add function to insert a page break between the row whose index is passed as a parameter, and the adjacent row below.

Call the RowPageBreaks.Clear or RowPageBreaks.Delete procedure to delete all or only specific custom row page breaks.

You can link the InsertPageBreak, RemovePageBreak, and ResetAllPageBreaks commands to elements of your UI to implement end-user page break management options in your application.

See Also