DotmDocumentImporterOptions Class
Contains options used to load (import) the document in DOTM format (Microsoft Office Open XML Macro-Enabled Template, .dotm).
Namespace: DevExpress.XtraRichEdit.Import
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
[ComVisible(true)]
public class DotmDocumentImporterOptions :
OpenXmlDocumentImporterOptions
Related API Members
The following members return DotmDocumentImporterOptions objects:
Remarks
The code sample below shows how to handle the BeforeImport event to specify DOTM import options:
private static void WordProcessor_BeforeImport(object sender, BeforeImportEventArgs e)
{
if (e.DocumentFormat == DocumentFormat.Dotm)
{
//Do not update date fields:
((DevExpress.XtraRichEdit.Import.DotmDocumentImporterOptions)e.Options).UpdateField.Date = false;
}
}
Implements
DevExpress.Office.ISupportsCopyFrom<IImporterOptions>
Inheritance
Object
ViewStatePersisterCore
BaseOptions
RichEditNotificationOptions
DocumentImporterOptions
DevExpress.XtraRichEdit.Import.XmlBasedDocumentImporterOptions
OpenXmlDocumentImporterOptions
DotmDocumentImporterOptions
See Also