Description

SummaryZoomSection.Description property

Returns the text description of the Summary Zoom Section object.

public string Description { get; set; }

Examples

Example:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    ISummaryZoomSection zoomSection = zoomFrame.SummaryZoomCollection[1];
    zoomSection.Description = "Description";
}

See Also