Clear

ISummaryZoomSectionCollection.Clear method

Removes all SummaryZoomSection objects from the collection.

public void Clear()

Examples

The example demonstrates getting Summary Zoom Section element by index:

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

See Also