Clear
SummaryZoomSectionCollection.Clear method
Elimina todos los objetos SummaryZoomSection de la colección.
public void Clear()
Examples
El ejemplo demuestra cómo obtener un elemento de la Sección de Zoom Resumido por índice:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame) pres.Slides[1].Shapes[0];
ISummaryZoomSectionCollection collection = zoomFrame.SummaryZoomCollection;
collection.Clear();
}
See Also
- class SummaryZoomSectionCollection
- namespace Aspose.Slides
- assembly Aspose.Slides