DotDocumentImporterOptions Class
Contains options used to load (import) the document in DOT format (Microsoft Word 97-2007 Template, .dot).
Namespace: DevExpress.XtraRichEdit.Import
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
Related API Members
The following members return DotDocumentImporterOptions objects:
Remarks
private static void WordProcessor_BeforeImport(object sender, BeforeImportEventArgs e)
{
if (e.DocumentFormat == DocumentFormat.Dot)
{
//Restrict document export properties:
((DevExpress.XtraRichEdit.Import.DotDocumentImporterOptions)e.Options).UpdateField.Date = false;
}
}
Implements
DevExpress.Office.ISupportsCopyFrom<IImporterOptions>
Inheritance
See Also