RemoveSummaryZoomSection()
SummaryZoomSectionCollection::RemoveSummaryZoomSection(System::SharedPtr<ISection>) method
Remove Summary Zoom Section object from the collection.
void Aspose::Slides::SummaryZoomSectionCollection::RemoveSummaryZoomSection(System::SharedPtr<ISection> section) override
Arguments
Parameter | Type | Description |
---|---|---|
section | System::SharedPtr<ISection> | Section for which the Summary Zoom Section element is to be removed ISection. |
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();
collection->RemoveSummaryZoomSection(pres->get_Sections()->idx_get(1));
See Also
- Typedef SharedPtr
- Class ISection
- Class SummaryZoomSectionCollection
- Namespace Aspose::Slides
- Library Aspose.Slides