Word.CloseBehavior enum

指定 的 Document.close关闭行为。

注解

[ API 集:WordApi 1.5 ]

示例

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/save-close.yaml

// Closes the document after saving.
await Word.run(async (context) => {
  context.document.close(Word.CloseBehavior.save);
});

字段

save = "Save"

在关闭文档之前保存更改。

skipSave = "SkipSave"

关闭文档时放弃可能的更改。