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.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
[ComVisible(true)]
public class DotxDocumentImporterOptions :
OpenXmlDocumentImporterOptions
Related API Members
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
DevExpress.Office.ISupportsCopyFrom<IImporterOptions>
Inheritance
Object
ViewStatePersisterCore
BaseOptions
RichEditNotificationOptions
DocumentImporterOptions
DevExpress.XtraRichEdit.Import.XmlBasedDocumentImporterOptions
OpenXmlDocumentImporterOptions
DotxDocumentImporterOptions
See Also