Bool nwScrWinScroll( hWnd, x, y ) NWHWND hWnd Sint32 x Sint32 y
hWnd | スクロールウィンドウのウィンドウハンドル |
x,y | スクロール値 |
TRUE | 成功 |
FALSE | 失敗 |
/* Scrolls up one dot at a time */ Sint32 njUserMain(void){ NWHWND hWnd = nwFindWindow(NULL, "Scroll Window"); if (hWnd) { nwScrWinScroll(hWnd, 0, 1); } : return nwExecute(); }