custom propertiesに関するMS Office js api 1.3ドキュメントを見ました。 しかし、私はオフィスjsによって単語の設定からカスタムプロパティ項目を読むことができません。カスタムプロパティ(Office用JavaScript API 1.3)を使用することは可能ですか
`Word.run(function (context) {
// Create a proxy object for the document.
var thisDocument = context.document;
var customProperties = thisDocument.properties.customProperties;
context.load(customProperties);
return context.sync().then(function() {
var getcount = customProperties.getCount();
console.log(customProperties.items);
return context.sync().then(function() {
console.log(getcount.value);
});
});
})`
常に、customProperties.itemsは空の配列を返します。私もset
メソッドを見つけることができませんcustomProperties
私のカスタムプロパティはこの(https://i.stack.imgur.com/AywDo.png)で表示されます。
MS Office js apiはまだ単語のカスタムプロパティへのアクセスをサポートしていませんか?
Marc:あなたの答えは間違っています。取得しようとした文書のプロパティは、UIとコードのものとまったく同じです。詳細は私の答えをチェックしてください。ありがとう。 –
訂正していただきありがとうございます、私は誤解されてうれしいです。 –