BOOL Ellipse( int x1, int y1, int x2, int y2 );
BOOL Ellipse( LPRECT lpRect );
x1
Specifies the logical x-coordinate of the upper-left corner of the ellipse's bounding rectangle.
y1
Specifies the logical y-coordinate of the upper-left corner of the ellipse's bounding rectangle.
x2
Specifies the logical x-coordinate of the lower-right corner of the ellipse's bounding rectangle.
y2
Specifies the logical y-coordinate of the lower-right corner of the ellipse's bounding rectangle.
lpRect
Specifies the ellipse's bounding rectangle. You can also pass a CRect object for this parameter.
Draws an ellipse. The center of the ellipse is the center of the bounding rectangle specified by x1, y1, x2, and y2, or lpRect. The ellipse is drawn with the current pen and its interior is filled with the current brush.
If either the width or the height of the bounding rectangle is 0, no ellipse is drawn.
TRUE if the ellipse is drawn; otherwise FALSE.
CDC::Arc, CDC::Chord, ::Ellipse