Word.SaveBehavior enum
指定 的 Document.save
保存行为。
注解
示例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/save-close.yaml
// If the document hasn't been saved before, prompts
// user with options for if or how they want to save.
await Word.run(async (context) => {
context.document.save(Word.SaveBehavior.prompt);
await context.sync();
});
字段
prompt = "Prompt" | 如果文档尚未保存,则向用户显示“另存为”对话框。 如果文档以前已保存,则不会生效。 |
save = "Save" | 保存文档而不提示用户。 如果是新文档,则会使用默认名称或指定名称将其保存在默认位置。 |