类 Rectangle
java.lang.Object
com.grapecity.documents.excel.Rectangle
Represents a rectangle class.
-
构造器概要
-
方法概要
修饰符和类型方法说明final double
Returns the height of this rectangle.final double
getWidth()
Returns the width of this rectangle.final double
getX()
Returns the x-coordinate of the upper-left corner of this rectangle.final double
getY()
Returns the y-coordinate of the upper-left corner of this rectangle.final void
setHeight
(double value) Sets the height of this rectangle.final void
setWidth
(double value) Sets the width of this rectangle.final void
setX
(double value) Sets the x-coordinate of the upper-left corner of this rectangle.final void
setY
(double value) Sets the y-coordinate of the upper-left corner of this rectangle.
-
构造器详细资料
-
Rectangle
public Rectangle(double x, double y, double width, double height)
-
-
方法详细资料
-
getX
public final double getX()Returns the x-coordinate of the upper-left corner of this rectangle. -
setX
public final void setX(double value) Sets the x-coordinate of the upper-left corner of this rectangle. -
getY
public final double getY()Returns the y-coordinate of the upper-left corner of this rectangle. -
setY
public final void setY(double value) Sets the y-coordinate of the upper-left corner of this rectangle. -
getWidth
public final double getWidth()Returns the width of this rectangle. -
setWidth
public final void setWidth(double value) Sets the width of this rectangle. -
getHeight
public final double getHeight()Returns the height of this rectangle. -
setHeight
public final void setHeight(double value) Sets the height of this rectangle.
-