Description
Uses a brush to fill the interior of an ellipse
that is specified by coordinates and dimensions.
Syntax
GpStatus WINGDIPAPI GdipFillEllipse(
GpGraphics
*graphics,
GpBrush *brush,
REAL x,
REAL y,
REAL width,
REAL height
);
PowerBASIC Syntax
DECLARE FUNCTION GdipFillEllipse ( _
BYVAL graphics
AS DWORD, _
BYVAL brush 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.
brush
[in] Pointer to a Brush
object that is used to paint the interior of the ellipse.
x
[in] Simple precision value that specifies the
x-coordinate of the upper-left corner of the rectangle that specifies
the boundaries of the ellipse.
y
[in] Simple precision value that specifies the
y-coordinate of the upper-left corner of the rectangle that specifies
the boundaries of the ellipse.
width
[in] Simple precision value that specifies the
width of the rectangle that specifies the boundaries of the ellipse.
height
[in] Simple precision value that specifies the
height of the rectangle that specifies the boundaries of the ellipse.
|