officefileapi-devexpress-dot-xtrarichedit-dot-richeditdocumentserver-94314de1.md
Occurs after a document is loaded.
Namespace : DevExpress.XtraRichEdit
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
public event EventHandler DocumentLoaded
Public Event DocumentLoaded As EventHandler
The DocumentLoaded event's data class is EventArgs.
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();
}
}
richEditControl.LoadDocument("FirstLook.docx")
AddHandler richEditControl.DocumentLoaded, AddressOf RichEditControl_DocumentLoaded
Private Sub RichEditControl_DocumentLoaded(ByVal sender As Object, ByVal e As EventArgs)
Dim control As RichEditControl = TryCast(sender, RichEditControl)
If control.Document.Fields.Count <> 0 Then
control.Document.Fields.Update()
End If
End Sub
See Also