Clear
ISummaryZoomSectionCollection.Clear method
从集合中移除所有 SummaryZoomSection 对象。
public void Clear()
Examples
示例演示如何通过索引获取 Summary Zoom Section 元素:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame) pres.Slides[1].Shapes[0];
ISummaryZoomSectionCollection collection = zoomFrame.SummaryZoomCollection;
collection.Clear();
}
See Also
- interface ISummaryZoomSectionCollection
- namespace Aspose.Slides
- assembly Aspose.Slides