Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RichEditDocumentServer.DocumentLoaded Event

Occurs after a document is loaded.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.RichEdit.v24.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

#Declaration

#Event Data

The DocumentLoaded event's data class is EventArgs.

#Remarks

The DocumentLoaded event fires after the RichEditDocumentServer.LoadDocument or Document.LoadDocument method call. The event is also raised when the following properties change their values:

The DocumentLoaded fires when the document model is built and the loaded document is valid.

Note

The RichEditDocumentServer does not provide a technique to determine the moment when all images with external references are downloaded and inserted in an HTML document.

The code sample below shows how to update fields in the main body of a loaded document:

richEditDocumentServer.LoadDocument("FirstLook.docx");
richEditDocumentServer.DocumentLoaded += RichEditDocumentServer_DocumentLoaded;


private void RichEditDocumentServer_DocumentLoaded(object sender, EventArgs e)
{
    RichEditDocumentServer control = sender as RichEditDocumentServer;
    if (control.Document.Fields.Count != 0)
    {
        control.Document.Fields.Update();
    }
}

#Implements

See Also