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

DotxDocumentImporterOptions Class

Contains options used to load (import) the document in DOTX format (Office Open XML macro-free template, .dotx).

Namespace: DevExpress.XtraRichEdit.Import

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

NuGet Package: DevExpress.RichEdit.Core

Declaration

[ComVisible(true)]
public class DotxDocumentImporterOptions :
    OpenXmlDocumentImporterOptions

Remarks

The code sample below shows how to handle the BeforeImport event to specify DOTX import options:

private static void WordProcessor_BeforeImport(object sender, BeforeImportEventArgs e)
{
    if (e.DocumentFormat == DocumentFormat.Dotx)
    {
        //Do not update date fields:
        ((DevExpress.XtraRichEdit.Import.DotxDocumentImporterOptions)e.Options).UpdateField.Date = false;
    }
}

Implements

Inheritance

Object
ViewStatePersisterCore
BaseOptions
RichEditNotificationOptions
DocumentImporterOptions
DevExpress.XtraRichEdit.Import.XmlBasedDocumentImporterOptions
OpenXmlDocumentImporterOptions
DotxDocumentImporterOptions
See Also