Skip to main content

OpenXmlDocumentExporterOptions.AlternateImageFolder Property

Specifies the directory in which the document images should be saved.

Namespace: DevExpress.XtraRichEdit.Export

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

NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation

Declaration

[DefaultValue(false)]
public bool AlternateImageFolder { get; set; }

Property Value

Type Default Description
Boolean false

true to store document images in the “\word\images“ folder; false to use the “\images“ folder instead.

Property Paths

You can access this nested property as listed below:

Object Type Path to AlternateImageFolder
RichEditDocumentExportOptions
.OpenXml .AlternateImageFolder

Remarks

Following the DOCX specification, document images can be stored in either of the following folders: “\images“ (where images are saved by default) or “\word\images“ (used to store images by some popular web services).

To ensure that saved document images can be located by any third-party service, use the AlternateImageFolder property to specify an alternate folder for storing document images.

See Also