DrawEdge function user32

int DrawEdge(
  1. int hdc,
  2. Pointer<RECT> qrc,
  3. int edge,
  4. int grfFlags
)

The DrawEdge function draws one or more edges of rectangle.

BOOL DrawEdge(
  HDC    hdc,
  LPRECT qrc,
  UINT   edge,
  UINT   grfFlags);

Implementation

int DrawEdge(int hdc, Pointer<RECT> qrc, int edge, int grfFlags) =>
    _DrawEdge(hdc, qrc, edge, grfFlags);