我需要有关如何在Office 365加载项中的PowerPoint上的活动幻灯片(读取视图)上设置数据的帮助。我原以为下面的代码在编辑视图中工作应该在读取视图中工作但它返回内部错误消息。
Office.context.document.getActiveViewAsync(
function (asyncResult) {
if (asyncResult.value === 'read') {
Office.context.document.setSelectedDataAsync('What I want to write on the active slide');
}
else{
console.log(asyncResult.value);
}
});
`