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

ImageExportMode Enum

Lists the available image export modes.

Namespace: DevExpress.XtraPrinting

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

NuGet Packages: DevExpress.Printing.Core, DevExpress.WindowsDesktop.Printing.Core

Declaration

[ResourceFinder(typeof(ResFinder))]
public enum ImageExportMode

Members

Name Description
SingleFile

Exports the document to a single image without indicating the borders of individual pages.

The document’s page headers and footers, and the top and bottom margins are repeated only once - at the beginning and end of the resulting image.

When this export mode is used, the ImageExportOptions.PageRange property is ignored.

SingleFilePageByPage

The document is exported to a single image with borders drawn around each page.

The document’s page headers and footers, and top and bottom margins appear on every page.

The border settings are specified by the ImageExportOptions.PageBorderWidth and ImageExportOptions.PageBorderColor properties.

DifferentFiles

Exports each document page to a separate image (with the image file name indicating the page number).

The document’s page headers and footers, and the top and bottom margins are repeated only once - at the beginning and end of the resulting image.

Related API Members

The following properties accept/return ImageExportMode values:

Remarks

Use this enumeration members to specify the image export modes. This enumeration values are used by the ImageExportOptions.ExportMode property.

See Also