wpf-devexpress-dot-xpf-dot-richedit-dot-richeditcontrol-7007440a.md
Invokes the “ Open …” file dialog, creates a specific importer and loads the file.
Namespace : DevExpress.Xpf.RichEdit
Assembly : DevExpress.Xpf.RichEdit.v25.2.dll
NuGet Package : DevExpress.Wpf.RichEdit
public virtual bool LoadDocument()
Public Overridable Function LoadDocument As Boolean
| Type | Description |
|---|---|
| Boolean |
true, if the document is successfully loaded; otherwise, false.
|
File extension determines the document format. The following file extensions are recognized:
If the file is in a different format than its extension indicates, or encrypted, it is not loaded. However, you can subscribe to the RichEditControl.InvalidFormatException event which occurs in this situation and examine the RichEditInvalidFormatExceptionEventArgs.Exception property to determine a reason for not loading a document.
Tip
Determine a moment when the document model can be safely modified using the RichEditControl.DocumentLoaded event. Call the LoadDocument method in the Form.Loaded event handler to work with the DocumentLoaded event. Handle the DocumentLayout.DocumentFormatted event to check the loaded document’s layout.
See Also