EnableScrollBar function user32

int EnableScrollBar(
  1. int hWnd,
  2. int wSBflags,
  3. int wArrows
)

The EnableScrollBar function enables or disables one or both scroll bar arrows.

BOOL EnableScrollBar(
  HWND hWnd,
  UINT wSBflags,
  UINT wArrows
);

Implementation

int EnableScrollBar(int hWnd, int wSBflags, int wArrows) =>
    _EnableScrollBar(hWnd, wSBflags, wArrows);