RemoveSummaryZoomSection

SummaryZoomSectionCollection.RemoveSummaryZoomSection method

Supprimer l’objet Summary Zoom Section de la collection.

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

Exemples

L’exemple 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 également