idx_get()

SummaryZoomSectionCollection::idx_get(int32_t) method

Gets the element at the specified index. Read-only ISummaryZoomSection.

System::SharedPtr<ISummaryZoomSection> Aspose::Slides::SummaryZoomSectionCollection::idx_get(int32_t index) override

Remarks

The example demonstrates getting Summary Zoom Section element by index:

auto pres = System::MakeObject<Presentation>(u"pres.pptx");
auto shapes = pres->get_Slides()->idx_get(1)->get_Shapes();

auto zoomFrame = System::ExplicitCast<ISummaryZoomFrame>(shapes->idx_get(0));
auto collection = zoomFrame->get_SummaryZoomCollection();
auto zoomSection = collection->idx_get(1);

See Also