|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| gdi32.lib
| Header File
| wingdi.h
| Unicode
| No
| Platform Notes
| Windows 95: int == 16 bits
|
|
|
GetRegionData
The GetRegionData function fills the specified buffer with data describing a region. This data
includes the dimensions of the rectangles that make up the region.
DWORD GetRegionData(
HRGN hRgn,
| // handle of region
| DWORD dwCount,
| // size of buffer containing region data
| LPRGNDATA lpRgnData
| // address of buffer containing region data
| );
|
|
Parameters
hRgn
Identifies the region.
dwCount
Specifies the size, in bytes, of the lpRgnData buffer.
lpRgnData
Points to a RGNDATA structure that receives the information. If this parameter is NULL, the
return value contains the number of bytes needed for the region data.
Return Values
If the function succeeds and dwCount specifies an adequate number of bytes, the return value is 1. If dwCount is too small or lpRgnData is NULL, the return value is the required number of bytes.
If the function fails, the return value is zero.
Remarks
The GetRegionData function is used in conjunction with the ExtCreateRegion function.
See Also
ExtCreateRegion, RGNDATA
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|