RemoveSummaryZoomSection

ISummaryZoomSectionCollection.RemoveSummaryZoomSection méthode

Supprimer l’objet Summary Zoom Section de la collection.

public void RemoveSummaryZoomSection(ISection section)
ParamètreTypeDescription
sectionISectionSection pour laquelle l’élément Summary Zoom Section doit être supprimé ISection.

Exemples

L’exemple démontre comment obtenir l’élément Summary Zoom Section par 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]);
}

Voir Aussi