Title

SummaryZoomSection.Title свойство

Возвращает текстовое название объекта раздела сводного зума.

public string Title { get; set; }

Примеры

Пример:

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

См. также