GetSummarySection

SummaryZoomSectionCollection.GetSummarySection method

Возвращает элемент Summary Zoom Section для данного раздела.

public ISummaryZoomSection GetSummarySection(ISection section)
ПараметрТипОписание
sectionISectionРаздел для поиска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]);
}

Смотрите также