Skip to main content
A newer version of this page is available. .

RichEditControl.LoadDocument(IWin32Window) Method

Invokes the Open file dialog as a child of the specified parent window.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.XtraRichEdit.v18.2.dll

Declaration

public virtual void LoadDocument(
    IWin32Window parent
)

Parameters

Name Type Description
parent IWin32Window

The IWin32Window object that is the parent window.

Remarks

File extension determines the document format. The following file extensions are recognized:

  • DOC, DOCX, ODT - non-encrypted files only;
  • RTF, TXT, HTM, HTML, MHT, XML, EPUB;

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 find out a reason for not loading a document.

Tip

Determine a moment when the document model can be safely modified using the RichEditControl.DocumentLoaded event. Handle the DocumentLayout.DocumentFormatted event to check the loaded document’s layout.

See Also