Item

ISummaryZoomSectionCollection indexer

Obtiene el elemento en el índice especificado. Solo lectura ISummaryZoomSection.

public ISummaryZoomSection this[int index] { get; }

Ejemplos

El ejemplo demuestra cómo obtener un elemento de la sección de resumen de zoom por índice:

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

Véase también