SummaryZoomCollection

ISummaryZoomFrame.SummaryZoomCollection propriété

Obtient ISummaryZoomSectionCollection pour l’objet Summary Zoom Frame.

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

Exemples

L’exemple démontre comment obtenir un élément de la section de zoom récapitulatif par index :

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

Voir Aussi