corelibraries-devexpress-dot-xtraprinting-dot-printingsystembase-0d1ef677.md
Provides access to a collection of pages generated for this printing system.
Namespace : DevExpress.XtraPrinting
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
[Browsable(false)]
public PageList Pages { get; }
<Browsable(False)>
Public ReadOnly Property Pages As PageList
| Type | Description |
|---|---|
| PageList |
A PageList object which represents a collection of pages.
|
After a printing system’s PrintingSystemBase.Document is generated (e.g. after the LinkBase.CreateDocument LinkBase.CreateDocument is called), all pages of the generated Document are accessed via the Pages property. Then, you’re able to change the page order in this collection, or add pages from other documents, or insert new empty pages via the PrintingSystemBase.CreatePage method. Note that if the pages collection is modified after it was originally generated, the Document.IsModified property returns true.
Note
Whether the page numbers show the initial position of pages in the original document or all pages are renumbered, is controlled via the PrintingSystemBase.ContinuousPageNumbering property.
See Also