SummaryZoomCollection

SummaryZoomFrame.SummaryZoomCollection property

ObtientISummaryZoomSectionCollection pour l’objet Summary Zoom Frame.

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

Exemples

L’exemple montre comment obtenir l’élément Summary Zoom Section par index :

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

Voir également