|
Description
Adds an ellipse to this path.
Syntax
GpStatus WINGDIPAPI GdipAddPathEllipseI(
GpPath *path,
INT x,
INT y,
INT width,
INT height
);
PowerBASIC Syntax
DECLARE FUNCTION GdipAddPathEllipseI ( _
BYVAL path AS
DWORD, _
BYVAL x AS
LONG, _
BYVAL y AS
LONG, _
BYVAL nWidth AS
LONG, _
BYVAL nHeight
AS LONG _
) AS LONG
Parameters
path
[in] Pointer to a GraphicsPath
object.
x
[in] Long integer value that specifies the
x-coordinate of the upper-left corner of the bounding rectangle for the
ellipse.
y
[in] Long integer value that specifies the
y-coordinate of the upper-left corner of the bounding rectangle for the
ellipse.
width
[in] Long integer value that specifies the
width of the bounding rectangle for the ellipse.
height
[in] Long integer value that specifies the
height of the bounding rectangle for the ellipse.
Remarks
A GraphicsPath object
stores an ellipse as a sequence of four connected Bézier
splines. The GraphicsPath object does not store the
upper-left corner, width, and height of the ellipse's bounding
rectangle.
|