get_TargetSection()

ISectionZoomFrame::get_TargetSection() method

Gets the section object that the Section Zoom object is linked to. Read ISection.

virtual System::SharedPtr<ISection> Aspose::Slides::ISectionZoomFrame::get_TargetSection()=0

Remarks

This example demonstrates changing target section and creates a new image for the section zoom object:

auto pres = System::MakeObject<Presentation>();
auto shapes = pres->get_Slides()->idx_get(0)->get_Shapes();

auto sectionZoomFrame = shapes->AddSectionZoomFrame(150.0f, 20.0f, 50.0f, 50.0f, pres->get_Sections()->idx_get(1));
sectionZoomFrame->set_TargetSection(pres->get_Sections()->idx_get(2));

See Also