RemoveSummaryZoomSection

SummaryZoomSectionCollection.RemoveSummaryZoomSection method

Entfernen Sie das Objekt Summary Zoom Section aus der Sammlung.

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

Beispiele

Das Beispiel zeigt das Abrufen des Elements Summary Zoom Section 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