GC.drawOval

Draws the outline of an oval, using the foreground color, within the specified rectangular area. <p> The result is a circle or ellipse that fits within the rectangle specified by the <code>x</code>, <code>y</code>, <code>width</code>, and <code>height</code> arguments. </p><p> The oval covers an area that is <code>width + 1</code> pixels wide and <code>height + 1</code> pixels tall. </p>

@param x the x coordinate of the upper left corner of the oval to be drawn @param y the y coordinate of the upper left corner of the oval to be drawn @param width the width of the oval to be drawn @param height the height of the oval to be drawn

@exception SWTException <ul> <li>ERROR_GRAPHIC_DISPOSED - if the receiver has been disposed</li> </ul>

class GC
void
drawOval
(
int x
,
int y
,
int width
,
int height
)

Meta