Title

Propiedad SummaryZoomSection.Title

Devuelve el título de texto del objeto Summary Zoom Section.

public string Title { get; set; }

Ejemplos

Ejemplo:

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

Ver También