Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

Note.EndUpdate(SubDocument) Method

Finalizes the note update.

Namespace: DevExpress.XtraRichEdit.API.Native

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

NuGet Package: DevExpress.RichEdit.Core

Declaration

void EndUpdate(
    SubDocument document
)

Parameters

Name Type Description
document SubDocument

The note opened for editing.

Remarks

Use the Note.BeginUpdate() - Note.EndUpdate() methods to initiate the update session and access note content.

The code sample belows shows how to change the footnote’s text:

static void EditFootnote(RichEditDocumentServer wordProcessor)
{
    wordProcessor.LoadDocument("Documents//Grimm.docx");
    Document document = wordProcessor.Document;

    //Access the footnote's content:
    SubDocument footnote = document.Footnotes[0].BeginUpdate();

    //Exclude the reference mark and the space after it from the range to be edited:
    DocumentRange noteTextRange = 
    footnote.CreateRange(footnote.Range.Start.ToInt() + 2, footnote.Range.Length
        - 2);
    //Clear the range and insert a new text:
    footnote.Delete(noteTextRange);
    footnote.AppendText("the text is removed");

    //Finalize the footnote update:
    document.Footnotes[0].EndUpdate(footnote);
}

The following code snippets (auto-collected from DevExpress Examples) contain references to the EndUpdate(SubDocument) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also