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 ??= _dylib
      .lookupFunction<_c_SetScrollPos, _dart_SetScrollPos>('SetScrollPos'))(
    hWnd,
    nBar,
    nPos,
    bRedraw,
  );
}