RemoveSummaryZoomSection

SummaryZoomSectionCollection.RemoveSummaryZoomSection method

Remove Summary Zoom Section object from the collection.

public void RemoveSummaryZoomSection(ISection section)
ParameterTypeDescription
sectionISectionSection for which the Summary Zoom Section element is to be removed ISection.

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.RemoveSummaryZoomSection(pres.Sections[1]);
}

See Also