◄CDC► ◄Up► ◄Contents► ◄Index► ◄Back► ──Microsoft Foundation Classes────────────────────────────────────────────── BOOL Ellipse( int x1, int y1, int x2, int y2 ); BOOL Ellipse( LPRECT lpRect ); Parameter Description <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. Remarks 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. Return Value TRUE if the ellipse is drawn; otherwise FALSE. See Also ◄CDC::Arc►, ◄CDC::Chord►, ◄::Ellipse► -♦-