DrawFocusRect function user32

bool DrawFocusRect(
  1. HDC hDC,
  2. Pointer<RECT> lprc
)

Draws a rectangle in the style used to indicate that the rectangle has the focus.

To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-drawfocusrect.

Implementation

@pragma('vm:prefer-inline')
bool DrawFocusRect(HDC hDC, Pointer<RECT> lprc) =>
    _DrawFocusRect(hDC, lprc) != FALSE;