• Post category:ApiDocument
  • Запись изменена:08.11.2022

GetEndNotesFirstParagraphs() → { Array.<ApiParagraph> }

Возвращает первые абзацы всех концевых сносок в текущем документе.

Параметры:

Этот метод не имеет параметров.

Возвращает:

Тип Массив.<ApiParagraph>

Пример

builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0); 
oParagraph.AddText("This is just a sample text.");
oDocument.AddEndnote();
var aEndNotesFirstParagraphs = oDocument.GetEndNotesFirstParagraphs();
aEndNotesFirstParagraphs[0].AddText("Endnote 1");
aEndNotesFirstParagraphs[0].SetBold(true);
builder.SaveFile("docx", "GetEndNotesFirstParagraphs.docx");
builder.CloseFile();