IndexOf
SummaryZoomSectionCollection.IndexOf method
Возвращает индекс указанного объекта SummaryZoomSection.
public int IndexOf(ISummaryZoomSection summaryZoomSection)
Параметр | Тип | Описание |
---|---|---|
summaryZoomSection | ISummaryZoomSection | SummaryZoomSection объект для поискаISummaryZoomSection . |
Возвращаемое значение
Индекс объекта SummaryZoomSection или -1, если объект SummaryZoomSection не из этой коллекции.
Примеры
Пример демонстрирует получение элемента Summary Zoom Section по индексу:
[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);
}
Смотрите также
- interface ISummaryZoomSection
- class SummaryZoomSectionCollection
- пространство имен Aspose.Slides
- сборка Aspose.Slides