ValidateRect (Windows Embedded CE 6.0)

1/6/2010

This function validates the client area within a rectangle by removing the rectangle from the update region of the specified window.

Syntax

BOOL ValidateRect( 
  HWND hWnd, 
  const RECT* 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 Value

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

Header winuser.h
Library coredll.lib, Winmgr.lib
Windows Embedded CE Windows CE 1.0 and later

See Also

Reference

GDI Functions
BeginPaint
InvalidateRect
WM_ERASEBKGND
WM_PAINT
RECT