GetSummarySection
SummaryZoomSectionCollection.GetSummarySection method
Возвращает элемент Summary Zoom Section для данного раздела.
public ISummaryZoomSection GetSummarySection(ISection section)
Параметр | Тип | Описание |
---|---|---|
section | ISection | Раздел для поискаISection |
Возвращаемое значение
ISummaryZoomSection
или null, если коллекция не содержит элементов для раздела.
Примеры
Пример демонстрирует получение элемента 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]);
}
Смотрите также
- interface ISummaryZoomSection
- interface ISection
- class SummaryZoomSectionCollection
- пространство имен Aspose.Slides
- сборка Aspose.Slides