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

CompositeLink.PageBreaks Property

Provides access to a collection of page breaks to be inserted into the resulting document.

Namespace: DevExpress.Xpf.Printing

Assembly: DevExpress.Xpf.Printing.v24.2.dll

NuGet Package: DevExpress.Wpf.Printing

#Declaration

public PageBreakInfoCollection PageBreaks { get; }

#Property Value

Type Description
PageBreakInfoCollection

A collection of page breaks to be inserted into the resulting document.

#Remarks

Use this property to manage page breaks inserted between specific printing links of the current CompositeLink.

compositeLink.PageBreaks.Add(new PageBreakInfo(links[0]) { PageBreakAfter = true });
compositeLink.PageBreaks.Add(new PageBreakInfo(links[1]) { PageBreakAfter = true });
compositeLink.PageBreaks.Add(new PageBreakInfo(links[2]) { PageBreakAfter = true });
See Also