SummaryZoomCollection

Propiedad SummaryZoomFrame.SummaryZoomCollection

Obtiene ISummaryZoomSectionCollection para el objeto de Marco de Zoom Resumido.

public ISummaryZoomSectionCollection SummaryZoomCollection { get; }

Ejemplos

El ejemplo demuestra cómo obtener un elemento de Sección de Zoom Resumido por índice:

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

Véase También