GetSummarySection()
ISummaryZoomSectionCollection::GetSummarySection(System::SharedPtr<ISection>) method
Returns Summary Zoom Section element for the given section.
virtual System::SharedPtr<ISummaryZoomSection> Aspose::Slides::ISummaryZoomSectionCollection::GetSummarySection(System::SharedPtr<ISection> section)=0
Arguments
Parameter | Type | Description |
---|---|---|
section | System::SharedPtr<ISection> | Section to find ISection |
Return Value
ISummaryZoomSection or null if collection does not contains element for the section.
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 selectedObject = collection->GetSummarySection(pres->get_Sections()->idx_get(2));
See Also
- Typedef SharedPtr
- Class ISummaryZoomSection
- Class ISection
- Class ISummaryZoomSectionCollection
- Namespace Aspose::Slides
- Library Aspose.Slides