QHTM_OPT_ENABLE_SCROLLBARS
Set whether or not QHTM will display scrollbars. This overrides QHTM's ability to automatically display scrollbars where needed.
Parameters
- wParam
- Must be QHTM_OPT_ENABLE_SCROLLBARS.
- lParam
- Can be TRUE or FALSE.
Return value
None
Example
//
// Enable the scrollbars
(void)::SendMessage( hwnd, QHTM_SET_OPTION, QHTM_OPT_ENABLE_SCROLLBARS, TRUE );
//
// Or use the QHTM message cracker...
QHTM_EnableScrollbars( hwnd, TRUE );
See also QHTM_GET_OPTION