RemoveSummaryZoomSection

ISummaryZoomSectionCollection.RemoveSummaryZoomSection Methode

Entfernen Sie das Summary Zoom Section-Objekt aus der Sammlung.

public void RemoveSummaryZoomSection(ISection section)  
ParameterTypBeschreibung
sectionISectionAbschnitt, für den das Summary Zoom Section-Element entfernt werden soll ISection.

Beispiele

Das Beispiel demonstriert das Abrufen des Summary Zoom Section-Elements nach 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]);  
}  

Siehe auch