SummaryZoomCollection

SummaryZoomFrame.SummaryZoomCollection property

Gets ISummaryZoomSectionCollection for the Summary Zoom Frame object.

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

Examples

The example demonstrates getting Summary Zoom Section element by index:

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

See Also