SummaryZoomCollection

ISummaryZoomFrame.SummaryZoomCollection property

Obtiene ISummaryZoomSectionCollection para el objeto Summary Zoom Frame.

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

Examples

El ejemplo demuestra cómo obtener un elemento de la 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;
}

See Also