SummaryZoomCollection

SummaryZoomFrame.SummaryZoomCollection property

erhältISummaryZoomSectionCollection für das Summary Zoom Frame-Objekt.

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

Beispiele

Das Beispiel zeigt das Abrufen des Elements Summary Zoom Section nach Index:

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

Siehe auch