Item

ISummaryZoomSectionCollection-Indexer

Erhält das Element am angegebenen Index. Nur lesender ISummaryZoomSection.

public ISummaryZoomSection this[int index] { get; }

Beispiele

Das Beispiel zeigt, wie man das Summary Zoom Section-Element nach Index erhält:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame) pres.Slides[1].Shapes[0];
    ISummaryZoomSectionCollection collection = zoomFrame.SummaryZoomCollection;
    ISummaryZoomSection zoomSection = collection[1];
}

Siehe auch