public class DimensionF extends Dimension2D implements Serializable
Dimension class encapsulates the width and
height of a component (in single precision) in a single object.
Normally the values of width
and height are non-negative integers.
The constructors that allow you to create a dimension do
not prevent you from setting a negative value for these properties.
If the value of width or height is
negative, the behavior of some methods defined by other objects is
undefined.
| Modifier and Type | Field and Description |
|---|---|
float |
height
The height dimension; negative values can be used.
|
float |
width
The width dimension; negative values can be used.
|
| Constructor and Description |
|---|
DimensionF()
Creates an instance of
Dimension with a width
of zero and a height of zero. |
DimensionF(DimensionF d)
Creates an instance of
Dimension whose width
and height are the same as for the specified dimension. |
DimensionF(float width,
float height)
Constructs a
Dimension and initializes
it to the specified width and specified height. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj)
Checks whether two dimension objects have equal values.
|
double |
getHeight() |
DimensionF |
getSize()
Gets the size of this
Dimension object. |
double |
getWidth() |
int |
hashCode()
Returns the hash code for this
Dimension. |
void |
setSize(DimensionF d)
Sets the size of this
Dimension object to the specified size. |
void |
setSize(double width,
double height)
Sets the size of this
Dimension object to
the specified width and height in double precision. |
void |
setSize(float width,
float height)
Sets the size of this
Dimension object
to the specified width and height. |
String |
toString()
Returns a string representation of the values of this
Dimension object's height and
width fields. |
clone, setSizepublic float width
public float height
public DimensionF()
Dimension with a width
of zero and a height of zero.public DimensionF(DimensionF d)
Dimension whose width
and height are the same as for the specified dimension.d - the specified dimension for the
width and
height valuespublic DimensionF(float width,
float height)
Dimension and initializes
it to the specified width and specified height.width - the specified widthheight - the specified heightpublic double getWidth()
getWidth in class Dimension2Dpublic double getHeight()
getHeight in class Dimension2Dpublic void setSize(double width,
double height)
Dimension object to
the specified width and height in double precision.
Note that if width or height
are larger than Integer.MAX_VALUE, they will
be reset to Integer.MAX_VALUE.setSize in class Dimension2Dwidth - the new width for the Dimension objectheight - the new height for the Dimension objectpublic DimensionF getSize()
Dimension object.
This method is included for completeness, to parallel the
getSize method defined by Component.Dimension with the same width and heightDimension.setSize(double, double),
Component.getSize()public void setSize(DimensionF d)
Dimension object to the specified size.
This method is included for completeness, to parallel the
setSize method defined by Component.d - the new size for this Dimension objectDimension.getSize(),
Component.setSize(int, int)public void setSize(float width,
float height)
Dimension object
to the specified width and height.
This method is included for completeness, to parallel the
setSize method defined by Component.width - the new width for this Dimension objectheight - the new height for this Dimension objectDimension.getSize(),
Component.setSize(int, int)public boolean equals(Object obj)
public int hashCode()
Dimension.public String toString()
Dimension object's height and
width fields. This method is intended to be used only
for debugging purposes, and the content and format of the returned
string may vary between implementations. The returned string may be
empty but may not be null.Copyright © 2025 Aspose. All Rights Reserved.