ValidateRect (Windows CE 5.0)
This function validates the client area within a rectangle by removing the rectangle from the update region of the specified window.
BOOLValidateRect( HWNDhWnd, constRECT* lpRect);
Parameters
hWnd
Handle to the window whose update region is to be modified.If this parameter is NULL, the system invalidates and redraws all windows and sends the WM_ERASEBKGND message to the window procedure before the function returns.
lpRect
Long pointer to a RECT structure that contains the client coordinates of the rectangle to be removed from the update region.If this parameter is NULL, the entire client area is removed.
Return Values
Nonzero indicates success.
Zero indicates failure.
To get extended error information, call GetLastError.
Remarks
Passing in a NULL value for the hWnd parameter is not supported.
The BeginPaint function validates the entire client area.
The ValidateRect function should not be called if a portion of the update region must be validated before the next WM_PAINT message is generated.
The system continues to generate WM_PAINT messages until the current update region is validated.
Requirements
OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.
Link Library: Coredll.lib, Winmgr.lib.
See Also
BeginPaint | InvalidateRect | WM_ERASEBKGND | WM_PAINT | RECT
Send Feedback on this topic to the authors