public interface ISectionZoomFrame extends IZoomObject
Represents a Section Zoom object in a slide.
Modifier and Type | Method and Description |
---|---|
ISection |
getTargetSection()
Gets or sets the section object that the Section Zoom object is linked to.
|
void |
setTargetSection(ISection value)
Gets or sets the section object that the Section Zoom object is linked to.
|
getImage, getImageType, getReturnToParent, getShowBackground, getTransitionDuration, setImage, setImageType, setReturnToParent, setShowBackground, setTransitionDuration
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
ISection getTargetSection()
Gets or sets the section object that the Section Zoom object is linked to.
Read/write ISection
.
This example demonstrates changing target section and creates a new image for the section zoom object:Presentation pres = new Presentation(); try { ISectionZoomFrame sectionZoomFrame = pres.getSlides().get_Item(0).getShapes().addSectionZoomFrame(150, 20, 50, 50, pres.getSections().get_Item(1)); sectionZoomFrame.setTargetSection(pres.getSections().get_Item(2)); } finally { if (pres != null) pres.dispose(); }
void setTargetSection(ISection value)
Gets or sets the section object that the Section Zoom object is linked to.
Read/write ISection
.
This example demonstrates changing target section and creates a new image for the section zoom object:Presentation pres = new Presentation(); try { ISectionZoomFrame sectionZoomFrame = pres.getSlides().get_Item(0).getShapes().addSectionZoomFrame(150, 20, 50, 50, pres.getSections().get_Item(1)); sectionZoomFrame.setTargetSection(pres.getSections().get_Item(2)); } finally { if (pres != null) pres.dispose(); }