Item

ISummaryZoomSectionCollection indexer

Obtiene el elemento en el índice especificado. Solo lecturaISummaryZoomSection .

public ISummaryZoomSection this[int index] { 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 = (ISummaryZoomFrame) pres.Slides[1].Shapes[0];
    ISummaryZoomSectionCollection collection = zoomFrame.SummaryZoomCollection;
    ISummaryZoomSection zoomSection = collection[1];
}

Ver también