SetScrollPos method

int SetScrollPos(
  1. Pointer<HWND__> hWnd,
  2. int nBar,
  3. int nPos,
  4. int bRedraw,
)

Implementation

int SetScrollPos(
  ffi.Pointer<HWND__> hWnd,
  int nBar,
  int nPos,
  int bRedraw,
) {
  return _SetScrollPos(
    hWnd,
    nBar,
    nPos,
    bRedraw,
  );
}