officefileapi-devexpress-dot-xtrarichedit-dot-import-bdaedae1.md
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.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
[ComVisible(true)]
public class DotxDocumentImporterOptions :
OpenXmlDocumentImporterOptions
<ComVisible(True)>
Public Class DotxDocumentImporterOptions
Inherits OpenXmlDocumentImporterOptions
The following members return DotxDocumentImporterOptions objects:
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;
}
}
Private Shared Sub WordProcessor_BeforeImport(ByVal sender As Object, ByVal e As BeforeImportEventArgs)
If e.DocumentFormat = DocumentFormat.Dotx Then
'Do not update date fields:
CType(e.Options, DevExpress.XtraRichEdit.Import.DotxDocumentImporterOptions).UpdateField.Date = False
End If
End Sub
DevExpress.Office.ISupportsCopyFrom<IImporterOptions>
Object ViewStatePersisterCore BaseOptions RichEditNotificationOptions DocumentImporterOptions DevExpress.XtraRichEdit.Import.XmlBasedDocumentImporterOptions OpenXmlDocumentImporterOptions DotxDocumentImporterOptions
See Also