SummaryZoomFrame
Inheritance: java.lang.Object, com.aspose.slides.Shape, com.aspose.slides.GraphicalObject
All Implemented Interfaces: com.aspose.slides.ISummaryZoomFrame
public class SummaryZoomFrame extends GraphicalObject implements ISummaryZoomFrame
Represents a Summary Zoom object in a slide.
Methods
Method | Description |
---|---|
getLayout() | Gets layout of Summary Zoom Sections in the frame. |
getSummaryZoomCollection() | Gets ISummaryZoomSectionCollection for the Summary Zoom Frame object. |
getLayout()
public final int getLayout()
Gets layout of Summary Zoom Sections in the frame. Default value is GridLayout.
The example demonstrates getting Summary Zoom Section element by index: Presentation pres = new Presentation("pres.pptx"); try { ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame)pres.getSlides().get_Item(1).getShapes().get_Item(0); int layout = zoomFrame.getLayout(); } finally { if (pres != null) pres.dispose(); }
Returns: int
getSummaryZoomCollection()
public final ISummaryZoomSectionCollection getSummaryZoomCollection()
Gets ISummaryZoomSectionCollection for the Summary Zoom Frame object.
The example demonstrates getting Summary Zoom Section element by index: Presentation pres = new Presentation("pres.pptx"); try { ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame)pres.getSlides().get_Item(1).getShapes().get_Item(0); ISummaryZoomSectionCollection collection = zoomFrame.getSummaryZoomCollection(); } finally { if (pres != null) pres.dispose(); }
Returns: ISummaryZoomSectionCollection