Dimension

Beginner

java.awt

Represents width and height. Return this from overlay render() methods to specify overlay size.

Category
Rendering
Methods
1
Properties
2

Methods (1)

Properties (2)

width

int

The width component

java
1Dimension dim = new Dimension(200, 30);
2int width = dim.width;

height

int

The height component

java
1Dimension dim = new Dimension(200, 30);
2int height = dim.height;

Related Classes

Plugins Using This Class