IShapeFrame

Overview

IShapeFrame is a interface in Aspose.Slides FOSS for Java.

Represents shape frame’s properties.

This interface provides 11 methods for working with IShapeFrame objects in Java programs. Available methods include: cloneT, getCenterX, getCenterY, getFlipH, getFlipV, getHeight, getRectangle, getRotation, getWidth, getX, getY. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: centerX, centerY, flipH, flipV, height, rectangle, and 4 more.

Properties

NameTypeAccessDescription
xdoubleReadReturns the x-coordinate of the upper-left corner.
ydoubleReadReturns the y-coordinate of the upper-left corner.
widthdoubleReadReturns the width.
heightdoubleReadReturns the height.
rotationdoubleReadReturns the rotation angle in degrees.
centerXdoubleReadReturns the x-coordinate of the center.
centerYdoubleReadReturns the y-coordinate of the center.
flipHNullableBoolReadDetermines whether the frame is flipped horizontally.
flipVNullableBoolReadDetermines whether the frame is flipped vertically.
rectangleRectangleFReadReturns the coordinates of this frame as a rectangle.

Methods

SignatureDescription
getX()doubleReturns the x-coordinate of the upper-left corner.
getY()doubleReturns the y-coordinate of the upper-left corner.
getWidth()doubleReturns the width.
getHeight()doubleReturns the height.
getRotation()doubleReturns the rotation angle in degrees.
getCenterX()doubleReturns the x-coordinate of the center.
getCenterY()doubleReturns the y-coordinate of the center.
getFlipH()NullableBoolDetermines whether the frame is flipped horizontally.
getFlipV()NullableBoolDetermines whether the frame is flipped vertically.
getRectangle()RectangleFReturns the coordinates of this frame as a rectangle.
cloneT()IShapeFrameCreates a deep copy of this shape frame.

See Also