Item

SummaryZoomSectionCollection Indexer

Holt das Element am angegebenen Index. Nur lesen ISummaryZoomSection.

public ISummaryZoomSection this[int index] { get; }

Beispiele

Das Beispiel demonstriert das Holen des Summary Zoom Section-Elements nach 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];
}

Siehe auch