public class SectionZoomFrame extends ZoomObject implements ISectionZoomFrame
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 links to.
|
void |
setTargetSection(ISection value)
Gets or sets the section object that the Section Zoom object links to.
|
getImageType, getReturnToParent, getShowBackground, getTransitionDuration, getZoomImage, setImageType, setReturnToParent, setShowBackground, setTransitionDuration, setZoomImagegetGraphicalObjectLockaddPlaceholder, getAlternativeText, getAlternativeTextTitle, getBasePlaceholder, getBlackWhiteMode, getConnectionSiteCount, getCustomData, getEffectFormat, getFillFormat, getFrame, getHeight, getHidden, getHyperlinkClick, getHyperlinkManager, getHyperlinkMouseOver, getImage, getImage, getLineFormat, getName, getOfficeInteropShapeId, getParent_Immediate, getParentGroup, getPlaceholder, getPresentation, getRawFrame, getRotation, getShapeLock, getSlide, getThreeDFormat, getThumbnail, getThumbnail, getUniqueId, getWidth, getX, getY, getZOrderPosition, isDecorative, isGrouped, isTextHolder, removePlaceholder, setAlternativeText, setAlternativeTextTitle, setBlackWhiteMode, setDecorative, setFrame, setHeight, setHidden, setHyperlinkClick, setHyperlinkMouseOver, setName, setRawFrame, setRotation, setWidth, setX, setY, writeAsSvg, writeAsSvgequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetImageType, getReturnToParent, getShowBackground, getTransitionDuration, getZoomImage, setImageType, setReturnToParent, setShowBackground, setTransitionDuration, setZoomImagegetGraphicalObjectLockaddPlaceholder, 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, setHyperlinkMouseOverpublic final ISection getTargetSection()
Gets or sets the section object that the Section Zoom object links to.
Read/write ISection.
Next example demonstrates changing target section and creates 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(); }
getTargetSection in interface ISectionZoomFramepublic final void setTargetSection(ISection value)
Gets or sets the section object that the Section Zoom object links to.
Read/write ISection.
Next example demonstrates changing target section and creates 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(); }
setTargetSection in interface ISectionZoomFrameCopyright © 2004-2025 Aspose Pty Ltd. All Rights Reserved.