gpt4 book ai didi

ms-word - 有人可以提供一个在 Office.js 中获取 DocumentProperties 的简单示例吗?

转载 作者:行者123 更新时间:2023-12-04 21:05:44 27 4
gpt4 key购买 nike

如何使用 Office.js (1.3) 获取 Word 文档的作者或标题?

我阅读了 documentProperties 上的文档但我需要一个例子来获得正确的语法。

帮助表示赞赏!

最佳答案

以下代码片段获取文档的作者和标题,并将这些属性值写入控制台。

Word.run(function (context) {
var document = context.document;
document.properties.load("author, title");

return context.sync()
.then(function () {
console.log("The author of this document is " + document.properties.author + " and the title is '" + document.properties.title + "'");
});
});
请注意,对于 Office.js API,您必须调用 load()对象上的方法来显式加载属性值,然后才能读取它。 (您可以在 same article you linked to in your question 中找到有关 load() 方法的信息。)

关于ms-word - 有人可以提供一个在 Office.js 中获取 DocumentProperties 的简单示例吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46430569/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com