ArcTo function gdi32

int ArcTo(
  1. int hdc,
  2. int left,
  3. int top,
  4. int right,
  5. int bottom,
  6. int xr1,
  7. int yr1,
  8. int xr2,
  9. int yr2,
)

The ArcTo function draws an elliptical arc.

BOOL ArcTo(
  HDC hdc,
  int left,
  int top,
  int right,
  int bottom,
  int xr1,
  int yr1,
  int xr2,
  int yr2
);

Implementation

int ArcTo(int hdc, int left, int top, int right, int bottom, int xr1, int yr1,
        int xr2, int yr2) =>
    _ArcTo(hdc, left, top, right, bottom, xr1, yr1, xr2, yr2);