RemoveSummaryZoomSection
SummaryZoomSectionCollection.RemoveSummaryZoomSection method
从集合中移除 Summary Zoom Section 对象。
public void RemoveSummaryZoomSection(ISection section)
范围 | 类型 | 描述 |
---|---|---|
section | ISection | 要删除摘要缩放部分元素的部分ISection . |
例子
该示例演示了按索引获取摘要缩放部分元素:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame) pres.Slides[1].Shapes[0];
ISummaryZoomSectionCollection collection = zoomFrame.SummaryZoomCollection;
collection.RemoveSummaryZoomSection(pres.Sections[1]);
}
也可以看看
- interface ISection
- class SummaryZoomSectionCollection
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides