SummaryZoomCollection

SummaryZoomFrame.SummaryZoomCollection 属性

获取 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;
}

另见