Item

SummaryZoomSectionCollection indexer

Ruft das Element am angegebenen Index ab. SchreibgeschütztISummaryZoomSection .

public ISummaryZoomSection this[int index] { get; }

Beispiele

Das Beispiel zeigt das Abrufen des Elements Summary Zoom Section 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