The GetWindowRgn function obtains a copy of the window region of a window. The window region of a window is set by calling the SetWindowRgn function. The window region determines the area within the window where the system permits drawing. The system does not display any portion of a window that lies outside of the window region
定義
int GetWindowRgn(HWND hWnd, HRGN hRgn);
參數
hWnd
Handle to the window whose window region is to be obtained.
hRgn
Handle to the region which will be modified to represent the window region.
返回值
The return value specifies the type of the region that the function obtains. It can be one of the following values.
NULLREGION - The region is empty.
SIMPLEREGION - The region is a single rectangle.
COMPLEXREGION - The region is more than one rectangle.
ERROR - The specified window does not have a region, or an error occurred while attempting to return the region.
說明
The coordinates of a window's window region are relative to the upper-left corner of the window, not the client area of the window.
To set the window region of a window, call the SetWindowRgn function.
系統要求
Windows NT/2000/XP: Included in Windows NT 3.51 and later.
Windows 95/98/Me: Included in Windows 95 and later.
Header: Declared in Winuser.h; include Windows.h.
Library: Use User32.lib.
相關詞條
-
GetWindowRgn
region region region
-
API函式
API概述定義作為一個編程初學者來說,API函式也許是一個時常耳聞卻感覺有些神秘的東西。單看它複雜的語法,就足令人望而生畏,但是...
API概述 函式大全 Escape 設備 內部函式 運算函式 -
SetWindowRgn
the GetWindowRgn function. 系統要求 Windows NT... GetWindowRgn 函式。 系統要求 windows NT/2000/XP...
-
WindowsAPI函式清單
WindowsAPI簡介:API的英文全稱(Application Programming Interface),WIN32 A...
WindowsAPI簡介: API函式清單: -
CWnd
GetWindowRgn 獲得視窗的視窗區域的一個拷貝 SetWindowRgn 設定...
視窗類 默認的訊息處理函式