SummaryZoomCollection

SummaryZoomFrame.SummaryZoomCollection-Eigenschaft

Erhält ISummaryZoomSectionCollection für das Summary Zoom Frame-Objekt.

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

Beispiele

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