Мы разрабатываем надстройку Office для онлайн-приложений для офиса.Ищите API для чтения / записи пользовательских свойств в Excel и PowerPoint онлайн.
Для Word в Интернете это может быть достигнуто с помощью следующего:
function setProperties() {
console.log("Adding custom properties ...");
Word.run(function (context) {
context.document.properties.customProperties.add("TestOBID", "WTDoc:1234");
return context.sync()
.catch(function (e) {
console.log(e.message);
})
})
}
function getProperties() {
console.log("Reading custom properties ...");
Word.run(function (context) {
var customDocProps = context.document.properties.customProperties;
context.load(customDocProps);
return context.sync()
.then(function () {
console.log("No. of custom properties:: " + customDocProps.items.length);
})
})
}
Что такое API для Excel и PowerPoint онлайн?Будет полезно, если вы приведете несколько примеров.