Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

OpenXmlDocumentExporterOptions.AlternateImageFolder Property

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

Namespace: DevExpress.XtraRichEdit.Export

Assembly: DevExpress.RichEdit.v19.1.Core.dll

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:

Library Object Type Path to AlternateImageFolder
WinForms Controls RichTextEditDocumentExportOptions
.OpenXml.AlternateImageFolder
Office File API 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