Title

SummaryZoomSection.Title property

Возвращает текстовый заголовок объекта «Сводная секция масштабирования».

public string Title { get; set; }

Примеры

Пример:

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

Смотрите также