Skip to main content
All docs
V23.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.v23.2.Core.dll

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

Declaration

[ComVisible(true)]
public class DotxDocumentImporterOptions :
    OpenXmlDocumentImporterOptions

The following members return DotxDocumentImporterOptions objects:

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