RoundRect function gdi32

int RoundRect(
  1. int hdc,
  2. int left,
  3. int top,
  4. int right,
  5. int bottom,
  6. int width,
  7. int height
)

The RoundRect function draws a rectangle with rounded corners. The rectangle is outlined by using the current pen and filled by using the current brush.

BOOL RoundRect(
  HDC hdc,
  int left,
  int top,
  int right,
  int bottom,
  int width,
  int height
);

Implementation

int RoundRect(int hdc, int left, int top, int right, int bottom, int width,
        int height) =>
    _RoundRect(hdc, left, top, right, bottom, width, height);