Skip to main content

Document.Pages Property

Provides access to the collection of pages within the current document.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public PageList Pages { get; }

Property Value

Type Description
PageList

A PageList object, specifying the collection of pages.

Remarks

After Printing System has generated a Document (e.g., on calling the LinkBase.CreateDocument or XtraReport.CreateDocument method), you can access the collection of document pages using the Pages property. This enables you to reorder pages, add pages from other documents or insert blank pages using the PrintingSystemBase.CreatePage method.

The Document.IsModified property returns true if the collection of pages has been modified after its creation.

See Also