IndexOf

SummaryZoomSectionCollection.IndexOf method

Renvoie un index de l’objet SummaryZoomSection spécifié.

public int IndexOf(ISummaryZoomSection summaryZoomSection)
ParamètreTaperLa description
summaryZoomSectionISummaryZoomSectionObjet SummaryZoomSection à rechercherISummaryZoomSection.

Return_Value

Index d’un objet SummaryZoomSection ou -1 si l’objet SummaryZoomSection n’appartient pas à cette collection.

Exemples

L’exemple montre comment obtenir l’élément Summary Zoom Section par index :

[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);
}

Voir également