4
如何獲得使用Office.js(1.3)Word文檔的作者或書名?有人能提供Office.js得到DocumentProperties的一個簡單的例子?
我讀documentProperties的文檔,但我需要一個例子讓語法正確。
幫助感謝!
如何獲得使用Office.js(1.3)Word文檔的作者或書名?有人能提供Office.js得到DocumentProperties的一個簡單的例子?
我讀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()
方法的信息。)
也許這可以幫助有點https://github.com/OfficeDev/office-js-snippets/blob/master/samples/word/07-custom -Properties/GET-內置-properties.yaml – Slai