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. |
getGraphicalObjectLock
addPlaceholder, getAlternativeText, getAlternativeTextTitle, getBlackWhiteMode, getConnectionSiteCount, getCustomData, getEffectFormat, getFillFormat, getFrame, getHeight, getHidden, getLineFormat, getName, getOfficeInteropShapeId, getParentGroup, getPlaceholder, getRawFrame, getRotation, getShapeLock, getThreeDFormat, getThumbnail, getThumbnail, getUniqueId, getWidth, getX, getY, getZOrderPosition, isGrouped, isTextHolder, removePlaceholder, setAlternativeText, setAlternativeTextTitle, setBlackWhiteMode, setFrame, setHeight, setHidden, setName, setRawFrame, setRotation, setWidth, setX, setY, writeAsSvg, writeAsSvg
getSlide
getPresentation
getHyperlinkClick, getHyperlinkManager, getHyperlinkMouseOver, setHyperlinkClick, setHyperlinkMouseOver
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(); 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(); }