Clear
SummaryZoomSectionCollection.Clear 方法
从集合中移除所有 SummaryZoomSection 对象。
public void Clear()
示例
该示例演示如何通过索引获取 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();
}
另请参阅
- class SummaryZoomSectionCollection
- namespace Aspose.Slides
- assembly Aspose.Slides