Title

ISummaryZoomSection.Title property

Gibt den Texttitel des Summary Zoom Section-Objekts zurück.

public string Title { get; set; }

Beispiele

Beispiel:

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

Siehe auch