Skip to main content
A newer version of this page is available. .

ImageExportOptions.PageRange Property

Specifies the range of pages to be exported.

Namespace: DevExpress.XtraPrinting

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

Declaration

[TypeConverter(typeof(ImagePageRangeConverter))]
[XtraSerializableProperty]
public override string PageRange { get; set; }

Property Value

Type Description
String

A String value, specifying the range of pages. The ranges are defined using hyphens and separated by commas. For example: “1,3,5-12”.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to PageRange
Cross-Platform Class Library ExportOptions
.Image.PageRange
WPF Controls ExportOptionsContainer
.Image.PageRange

Remarks

Only valid page numbers are taken into account. When some of the pages specified in a page range are missing in the current document, invalid page numbers are ignored. When there are no valid page numbers in the specified page range, all pages of the document are exported.

The PageRange property is ignored when the ImageExportOptions.ExportMode property is set to ImageExportMode.SingleFile.

The following code snippets (auto-collected from DevExpress Examples) contain references to the PageRange property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also