Visual Studio 2010 - Visual C++
CWnd::GetUpdateRgn
Retrieves the update region into a region identified by pRgn.
int GetUpdateRgn( CRgn* pRgn, BOOL bErase = FALSE );
Parameters
Return Value
Specifies a short-integer flag that indicates the type of resulting region. The value can take any one of the following:
-
SIMPLEREGION The region has no overlapping borders.
-
COMPLEXREGION The region has overlapping borders.
-
NULLREGION The region is empty.
-
ERROR No region was created.
Remarks
The coordinates of this region are relative to the upper-left corner (client coordinates).
The BeginPaint member function automatically validates the update region, so any call to GetUpdateRgn made immediately after a call to BeginPaint retrieves an empty update region.
Requirements
Header: afxwin.h
See Also