Back to Devexpress

DotxDocumentImporterOptions Class

officefileapi-devexpress-dot-xtrarichedit-dot-import-bdaedae1.md

latest3.0 KB
Original Source

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.v25.2.Core.dll

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
[ComVisible(true)]
public class DotxDocumentImporterOptions :
    OpenXmlDocumentImporterOptions
vb
<ComVisible(True)>
Public Class DotxDocumentImporterOptions
    Inherits OpenXmlDocumentImporterOptions

The following members return DotxDocumentImporterOptions objects:

Remarks

The code sample below shows how to handle the BeforeImport event to specify DOTX import options:

csharp
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;
    }
}
vb
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

Implements

INotifyPropertyChanged

IImporterOptions

DevExpress.Office.ISupportsCopyFrom<IImporterOptions>

Inheritance

Object ViewStatePersisterCore BaseOptions RichEditNotificationOptions DocumentImporterOptions DevExpress.XtraRichEdit.Import.XmlBasedDocumentImporterOptions OpenXmlDocumentImporterOptions DotxDocumentImporterOptions

See Also

DotxDocumentImporterOptions Members

DevExpress.XtraRichEdit.Import Namespace