Ellipse function gdi32

int Ellipse(
  1. int hdc,
  2. int left,
  3. int top,
  4. int right,
  5. int bottom,
)

The Ellipse function draws an ellipse. The center of the ellipse is the center of the specified bounding rectangle. The ellipse is outlined by using the current pen and is filled by using the current brush.

BOOL Ellipse(
  HDC hdc,
  int left,
  int top,
  int right,
  int bottom
);

Implementation

int Ellipse(int hdc, int left, int top, int right, int bottom) =>
    _Ellipse(hdc, left, top, right, bottom);