Title

ISummaryZoomSection.Title property

Renvoie le titre du texte de l’objet Summary Zoom Section.

public string Title { get; set; }

Exemples

Exemple :

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

Voir également