|
Description
Draws an ellipse.
Syntax
GpStatus WINGDIPAPI GdipDrawEllipse(
GpGraphics
*graphics,
GpPen *pen,
REAL x,
REAL y,
REAL width,
REAL height
);
PowerBASIC Syntax
DECLARE FUNCTION GdipDrawEllipse ( _
BYVAL graphics
AS DWORD, _
BYVAL pen AS
DWORD, _
BYVAL x AS
SINGLE, _
BYVAL y AS
SINGLE, _
BYVAL nWidth AS
SINGLE, _
BYVAL nHeight AS
SINGLE _
) AS LONG
Parameters
graphics
[in] Pointer to the
Graphics
object.
pen
[in] Pointer to a pen that is used to
draw the Bezier splines.
x
[in] Simple precision value
that specifies the x-coordinate of the upper-left corner of the
rectangle that bounds the ellipse.
y
[in] Simple precision value
that specifies the y-coordinate of the upper-left corner of the
rectangle that bounds the ellipse.
width
[in] Simple precision value
that specifies the width of the rectangle that bounds the ellipse.
height
[in] Simple precision value
that specifies the height of the rectangle that bounds the ellipse.
|