SummaryZoomCollection
ISummaryZoomFrame.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;
}