Clear

ISummaryZoomSectionCollection.Clear-Methode

Entfernt alle SummaryZoomSection-Objekte aus der Sammlung.

public void Clear()

Beispiele

Das Beispiel demonstriert, wie man ein Summary Zoom Section-Element anhand des Index erhält:

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

Siehe auch