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";
}

也可以看看