IndexOf

SummaryZoomSectionCollection.IndexOf method

Devuelve un índice del objeto SummaryZoomSection especificado.

public int IndexOf(ISummaryZoomSection summaryZoomSection)
ParámetroEscribeDescripción
summaryZoomSectionISummaryZoomSectionObjeto SummaryZoomSection a buscarISummaryZoomSection.

Valor_devuelto

Índice de un objeto SummaryZoomSection o -1 si el objeto SummaryZoomSection no pertenece a esta colección.

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 selectedObject = collection.GetSummarySection(pres.Sections[2]);
    int idx = collection.IndexOf(selectedObject);
}

Ver también