AddSummaryZoomSection

SummaryZoomSectionCollection.AddSummaryZoomSection method

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

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

返回值

添加ISummaryZoomFrameelement

例外

例外(健康)状况
ArgumentException引用部分不属于当前演示文稿或不包含任何幻灯片。

评论

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

例子

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

[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]);
}

也可以看看