Word.HeaderFooterType enum
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/insert-header-and-footer.yaml
await Word.run(async (context) => {
context.document.sections
.getFirst()
.getHeader(Word.HeaderFooterType.primary)
.insertParagraph("This is a primary header.", "End");
await context.sync();
});
フィールド
evenPages = "EvenPages" | セクションの偶数ページのすべてのヘッダーまたはフッターを返します。 |
firstPage = "FirstPage" | セクションの最初のページのヘッダーまたはフッターを返します。 |
primary = "Primary" | セクションのすべてのページのヘッダーまたはフッターを返しますが、最初のページまたはページが異なる場合は除外します。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins