PowerPoint.AddSlideOptions interface
表示添加新幻灯片时可用的选项。
注解
示例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/powerpoint/slide-management/add-slides.yaml
const chosenMaster = $("#master-id").val() as string;
const chosenLayout = $("#layout-id").val() as string;
await PowerPoint.run(async function(context) {
// Create a new slide using an existing master slide and layout.
const newSlideOptions: PowerPoint.AddSlideOptions = {
slideMasterId: chosenMaster, /* An ID from `Presentation.slideMasters`. */
layoutId: chosenLayout /* An ID from `SlideMaster.layouts`. */
};
context.presentation.slides.add(newSlideOptions);
await context.sync();
});
属性
layout |
指定要用于新幻灯片的幻灯片版式的 ID。
|
slide |
指定要用于新幻灯片的幻灯片母版的 ID。
|
属性详细信息
layoutId
指定要用于新幻灯片的幻灯片版式的 ID。
layoutId
如果未提供 ,但提供了 ,slideMasterId
则将使用指定幻灯片母版中的第一个版式的 ID。
slideMasterId
如果未提供 ,但layoutId
提供了 ,则需要根据说明) 中指定的slideMasterId
默认幻灯片母版 (提供指定的布局。 否则,将引发错误。
layoutId?: string;
属性值
string
注解
slideMasterId
指定要用于新幻灯片的幻灯片母版的 ID。
slideMasterId
如果未提供,则将使用上一张幻灯片的幻灯片母版。 如果没有上一张幻灯片,则将使用演示文稿的第一张幻灯片母版。
slideMasterId?: string;
属性值
string