set_Title()

SummaryZoomSection::set_Title(System::String) method

Returns the text title of the Summary Zoom Section object.

void Aspose::Slides::SummaryZoomSection::set_Title(System::String value) override

Remarks

Example:

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 zoomSection = zoomFrame->get_SummaryZoomCollection()->idx_get(1);
zoomSection->set_Title(u"Title");

See Also