CreatePolyPolygonRgn function
Applies to: desktop apps only
The CreatePolyPolygonRgn function creates a region consisting of a series of polygons. The polygons can overlap.
Syntax
HRGN CreatePolyPolygonRgn( __in const POINT *lppt, __in const INT *lpPolyCounts, __in int nCount, __in int fnPolyFillMode );
Parameters
- lppt [in]
-
A pointer to an array of POINT structures that define the vertices of the polygons in logical units. The polygons are specified consecutively. Each polygon is presumed closed and each vertex is specified only once.
- lpPolyCounts [in]
-
A pointer to an array of integers, each of which specifies the number of points in one of the polygons in the array pointed to by lppt.
- nCount [in]
-
The total number of integers in the array pointed to by lpPolyCounts.
- fnPolyFillMode [in]
-
The fill mode used to determine which pixels are in the region. This parameter can be one of the following values.
For more information about these modes, see the SetPolyFillMode function.
Return value
If the function succeeds, the return value is the handle to the region.
If the function fails, the return value is zero.
Remarks
When you no longer need the HRGN object, call the DeleteObject function to delete it.
Region coordinates are represented as 27-bit signed integers.
Requirements
|
Minimum supported client | Windows 2000 Professional |
|---|---|
|
Minimum supported server | Windows 2000 Server |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
- Regions Overview
- Region Functions
- CreatePolygonRgn
- CreateRectRgn
- CreateRectRgnIndirect
- CreateRoundRectRgn
- ExtCreateRegion
- GetRegionData
- DeleteObject
- POINT
- SelectObject
- SetPolyFillMode
Send comments about this topic to Microsoft
Build date: 3/7/2012