Last() → { DocumentElement }
Возвращает последний элемент документа.
Параметры:
Этот метод не имеет параметров.
Возвращает:
- Тип DocumentElement
Пример
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a sample text №1.");
oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is a sample text №2.");
oDocument.Push(oParagraph);
var oElement = oDocument.Last();
oElement.SetBold(true);
builder.SaveFile("docx", "Last.docx");
builder.CloseFile();