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

Section.EndnoteOptions Property

Provides access to the endnote options.

Namespace: DevExpress.XtraRichEdit.API.Native

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

NuGet Package: DevExpress.RichEdit.Core

#Declaration

EndnoteOptions EndnoteOptions { get; }

#Property Value

Type Description
EndnoteOptions

An object that contains endnote options.

#Remarks

Use the EndnoteOptions properties to specify the format of endnotes. The options are applied to endnotes in the current section.

The NumberingFormat, StartNumber, and RestartType properties allow you to change endnote’s format. If the RestartType property is set to NoteRestartType.NewSection or NoteRestartType.NewPage, the StartNumber property value is ignored.

The code sample below shows how to change the endnotes’ format so they appear as follows:

IMAGE

using (RichEditDocumentServer wordProcessor = new RichEditDocumentServer())
{
    wordProcessor.LoadDocument("Document.docx");
    Document document = wordProcessor.Document;
    EndnoteOptions endnoteOptions = document.Sections[0].EndnoteOptions;
    endnoteOptions.NumberingFormat = NumberingFormat.UpperRoman;
    endnoteOptions.StartNumber = 5;
}

Use the Document.EndnotePosition property to specify the endnote location. You can place endnotes at the end of the document, or they can appear at the end of each section.

The code sample below shows how to use this property:

RichEditDocumentServer wordProcessor = new RichEditDocumentServer();
wordProcessor.LoadDocument("Document.docx");
Document document = wordProcessor.Document;
document.EndnotePosition = EndnotePosition.EndOfSection;
See Also