SummaryZoomCollection

ISummaryZoomFrame.SummaryZoomCollection property

为摘要缩放框架对象获取ISummaryZoomSectionCollection

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

例子

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

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

也可以看看