public interface ISummaryZoomFrame extends IGraphicalObject
Represents a Summary Zoom frame in a slide.
| Modifier and Type | Method and Description |
|---|---|
int |
getLayout()
Gets layout of Summary Zoom Sections in the frame.
|
ISummaryZoomSectionCollection |
getSummaryZoomCollection()
Gets
ISummaryZoomSectionCollection for the Summary Zoom Frame object. |
getGraphicalObjectLockaddPlaceholder, getAlternativeText, getAlternativeTextTitle, getBasePlaceholder, getBlackWhiteMode, getConnectionSiteCount, getCustomData, getEffectFormat, getFillFormat, getFrame, getHeight, getHidden, getImage, getImage, getLineFormat, getName, getOfficeInteropShapeId, getParentGroup, getPlaceholder, getRawFrame, getRotation, getShapeLock, getThreeDFormat, getThumbnail, getThumbnail, getUniqueId, getWidth, getX, getY, getZOrderPosition, isDecorative, isGrouped, isTextHolder, removePlaceholder, setAlternativeText, setAlternativeTextTitle, setBlackWhiteMode, setDecorative, setFrame, setHeight, setHidden, setName, setRawFrame, setRotation, setWidth, setX, setY, writeAsSvg, writeAsSvggetSlidegetPresentationgetHyperlinkClick, getHyperlinkManager, getHyperlinkMouseOver, setHyperlinkClick, setHyperlinkMouseOverint 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(); try { ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame)pres.getSlides().get_Item(1).getShapes().get_Item(0); int layout = zoomFrame.getLayout(); } finally { if (pres != null) pres.dispose(); }
ISummaryZoomSectionCollection getSummaryZoomCollection()
Gets ISummaryZoomSectionCollection for the Summary Zoom Frame object.
The example demonstrates getting Summary Zoom Section element by index:Presentation pres = new Presentation(); try { ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame)pres.getSlides().get_Item(1).getShapes().get_Item(0); ISummaryZoomSectionCollection collection = zoomFrame.getSummaryZoomCollection(); } finally { if (pres != null) pres.dispose(); }
Copyright © 2004-2025 Aspose Pty Ltd. All Rights Reserved.