• Post category:ApiSection
  • Запись изменена:14.05.2023

GetNext() → { ApiSection | null }

Возвращает следующий раздел, если он существует.

Параметры:

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

Возвращает:

Тип ApiSection | null

Пример

builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a new paragraph.");
oParagraph.AddLineBreak();
oParagraph.AddText("Scroll down to see the new section.");
var oSection1 = oDocument.CreateSection(oParagraph);
oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is a paragraph in the first section");
oDocument.Push(oParagraph);
var oSection2 = oDocument.CreateSection(oParagraph);
var oNextSection = oSection1.GetNext();
oNextSection.SetPageMargins(7200, 2880, 1440, 5760);
builder.SaveFile("docx", "GetNext.docx");
builder.CloseFile();