Word.BreakType enum

指定分页符的窗体。

注解

[ API 集:WordApi 1.1 ]

示例

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/insert-line-and-page-breaks.yaml

await Word.run(async (context) => {
  context.document.body.paragraphs.getFirst().insertBreak(Word.BreakType.page, "After");

  await context.sync();
  console.log("success");
});

字段

line = "Line"

换行符。

next = "Next"

警告:Next 已弃用。 请改用 sectionNext。

page = "Page"

插入点处的分页符。

sectionContinuous = "SectionContinuous"

新节不包含相应分页符。

sectionEven = "SectionEven"

使下一节从下一偶数页开始的分节符。 如果分节符落入偶数页,则 Word 将下一奇数页留为空白。

sectionNext = "SectionNext"

分节符在下一页。

sectionOdd = "SectionOdd"

使下一节从下一奇数页开始的分节符。 如果分节符落入奇数页,则 Word 将下一偶数页留为空白。