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
public event EventHandler DocumentLoaded
#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:
- Document.Text
- Document.RtfText
- Document.OpenXmlBytes
- Document.WordMLText
- Document.HtmlText
- Document.MhtText
The DocumentLoaded fires when the document model is built and the loaded document is valid.
Note
The Rich
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();
}
}