SummaryZoomCollection

SummaryZoomFrame.SummaryZoomCollection property

ObtieneISummaryZoomSectionCollection para el objeto Cuadro de zoom de resumen.

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

Ejemplos

El ejemplo demuestra cómo obtener el elemento Sección de zoom de resumen por índice:

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

Ver también