wpf-devexpress-dot-xpf-dot-printing-796da31b.md
Lists the formats used to display page numbers in a document.
Namespace : DevExpress.Xpf.Printing
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public enum PageNumberKind
Public Enum PageNumberKind
| Name | Description |
|---|---|
None |
No information is displayed.
|
| Number |
The current page number is displayed, starting from 1 (e.g. “1”, “2”, “3”, …).
|
| NumberOfTotal |
Both the current page number and the total number of pages are displayed (e.g. “1 of 5”, “2 of 5”, “3 of 5”, …).
|
| RomanLowNumber |
The current page number is displayed using Roman numerals in lowercase (e.g. “i”, “ii”, “iii”, “iv”, …).
|
| RomanHiNumber |
The current page number is displayed using Roman numerals in uppercase (e.g. “I”, “II”, “III”, “IV”, …).
|
A PageNumberKind object is returned by the PageNumberExportSettings.Kind property.
See Also