set_Description()

SummaryZoomSection::set_Description(System::String) method

Returns the text description of the Summary Zoom Section object.

void Aspose::Slides::SummaryZoomSection::set_Description(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_Description(u"Description");

See Also