Title

ISummaryZoomSection.Title property

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

public string Title { get; set; }

Примеры

Пример:

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

См. Также