Sets the 32-bit range of an up-down control.
Syntax
To send this message, call the
SendMessage
function as follows.
|
|
lResult = SendMessage(
| // returns LRESULT in lResult
| | (HWND) hWndControl,
| // handle to destination control
| | (UINT) UDM_SETRANGE32,
| // message ID
| | (WPARAM) wParam,
| // = (WPARAM) (int) iLow; | | (LPARAM) lParam
| // = (LPARAM) (int) iHigh; | |
);
| |
|
Parameters
- iLow
-
Signed integer value that represents the new lower limit of the up-down control range.
- iHigh
-
Signed integer value that represents the new upper limit of the up-down control range.
Return Value
The return value for this message is not used.
Message Information
| Minimum DLL Version | comctl32.dll version 4.71 or later |
|---|
| Header | commctrl.h |
|---|
| Minimum operating systems |
Windows 2000, Windows NT 4.0 with Internet Explorer 4.0, Windows 98, Windows 95 with Internet Explorer 4.0 |
|---|