Item

ISummaryZoomSectionCollection indexer

Obtient l’élément à l’index spécifié. Lecture seuleISummaryZoomSection .

public ISummaryZoomSection this[int index] { get; }

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;
    ISummaryZoomSection zoomSection = collection[1];
}

Voir également