AddSummaryZoomSection

ISummaryZoomSectionCollection.AddSummaryZoomSection method

创建新的 Summary Zoom Section 对象并将其添加到集合

public ISummaryZoomSection AddSummaryZoomSection(ISection section)
范围类型描述
sectionISection新摘要缩放部分元素的部分ISection

返回值

添加ISummaryZoomFrameelement

评论

如果集合中已存在此部分的元素,则返回现有元素。

例子

该示例演示了按索引获取摘要缩放部分元素:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame) pres.Slides[1].Shapes[0];
    ISummaryZoomSectionCollection collection = zoomFrame.SummaryZoomCollection;
    ISummaryZoomSection newZoomSection = collection.AddSummaryZoomSection(pres.Sections[3]);
}

也可以看看