• Post category:ApiParagraph
  • Запись изменена:12.11.2022

SetKeepNext(isKeepNext)

Унаследованный от: ApiParaPr#SetKeepNext

Указывает, что при отображении документа с использованием просмотра с разбивкой по страницам содержимое текущего абзаца по крайней мере частично отображается на той же странице, что и следующий абзац, когда это возможно.

Параметры:

НазваниеТипОписание
isKeepNextлогическийЗначение true включает возможность сохранять строки абзаца на той же странице, что и следующий абзац.

Возвращает:

Этот метод не возвращает никаких данных.

Пример

builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is an example of how the paragraph tries to keep together with the next paragraph. ");
oParagraph.AddText("Scroll down to the second page to see it. ");
for (let x = 0; x < 5; ++x) {
  oParagraph = Api.CreateParagraph();
  for (let i = 0; i < 10; ++i) {
    oParagraph.AddText("These sentences are used to add lines for demonstrative purposes. ");
  }
  oParagraph.SetKeepNext(true);
  oDocument.Push(oParagraph);
}
oParagraph = Api.CreateParagraph();
oParagraph.AddText("The paragraph lines stay on the same page as the previous paragraph. ");
for (let i = 0; i < 10; ++i) {
  oParagraph.AddText("These sentences are used to add lines for demonstrative purposes. ");
}
oDocument.Push(oParagraph);
builder.SaveFile("docx", "SetKeepNext.docx");
builder.CloseFile();