我正在使用新的Office-Addin API创建PowerPoint-Addins。我使用link作为参考链接。我已经完成了将图像和文本从SharePoint添加到PowerPoint幻灯片中的工作。我已将文本和图像存储到SharePoint文档库中。
在当前幻灯片中添加图像的代码。
Office.context.document.setSelectedDataAsync(base64result, {
coercionType: Office.CoercionType.Image,
imageLeft: 50,
imageTop: 50,
imageWidth: 400
},
function (asyncResult) {
if (asyncResult.status === Office.AsyncResultStatus.Failed) {
console.log(asyncResult.error.message);
}
});
但是我想在添加文本/图像之前在当前Powerpower演示文稿中添加新幻灯片,并将此文本/图像添加到新创建的幻灯片中。
我已经检查了所有Microsoft Office参考页,但是他们没有提到可以通过加载项代码添加新幻灯片。是否可以使用外接程序API将幻灯片添加/或将外部幻灯片导入当前演示文稿