Updates a region to the portion of itself that intersects the specified rectangle's interior
#include <GDIPlus.au3>
_GDIPlus_RegionCombineRect ( $hRegion, $nX, $nY, $nWidth, $nHeight [, $iCombineMode = 2] )
$hRegion | Pointer to a Region object |
$nX | The X coordinate of the upper left corner of the rectangle |
$nY | The Y coordinate of the upper left corner of the rectangle |
$nWidth | The width of the rectangle |
$nHeight | The height of the rectangle |
$iCombineMode | [optional] Combine mode that specifies how the region is combined with the rectangle: 0 - The existing region is replaced by the new region 1 - The existing region is replaced by the intersection of itself and the new region 2 - The existing region is replaced by the union of itself and the new region 3 - The existing region is replaced by the result of performing an XOR on the two regions. A point is in the XOR of two regions if it is in one region or the other but not in both regions 4 - The existing region is replaced by the portion of itself that is outside of the new region 5 - The existing region is replaced by the portion of the new region that is outside of the existing region |
Success: | True. |
Failure: | False and sets the @error flag to non-zero, @extended may contain GPSTATUS error code ($GPIP_ERR* see GPIPlusConstants.au3). |
_GDIPlus_RegionCombinePath, _GDIPlus_RegionCombineRegion
Search GdipCombineRegionRect in MSDN Library.
#include <GDIPlus.au3>
#include <GUIConstantsEx.au3>
#include <WinAPIGdi.au3>
#include <WinAPIHObj.au3>
Example()
Func Example()
Local $hGUI, $hPath, $hFamily, $tLayout, $aSize, $hRegion, $hRGN
_GDIPlus_Startup()
$hGUI = GUICreate("GDI+", 620, 100)
GUISetBkColor(0x80) ;Set window background color to blue
GUISetState(@SW_SHOW)
$hPath = _GDIPlus_PathCreate() ;Create new path object
$hFamily = _GDIPlus_FontFamilyCreate("Arial Black") ;Create font family object
$tLayout = _GDIPlus_RectFCreate() ;Create string bounding rectangle X=0, Y=0
_GDIPlus_PathAddString($hPath, "AutoIt rulez!", $tLayout, $hFamily, 0, 85, 0) ;Add the outline of the string to the path
$aSize = WinGetPos($hGUI) ;Get windowsize
$hRegion = _GDIPlus_RegionCreateFromRect(0, 0, 110, $aSize[3]) ;Create region from a rectangle
_GDIPlus_RegionCombineRect($hRegion, $aSize[2] - 110, 0, 110, $aSize[3], 2) ;Combine rectangle_left AND rectangle_right
_GDIPlus_RegionCombinePath($hRegion, $hPath, 3) ;Combine rectangles XOR string
$hRGN = _GDIPlus_RegionGetHRgn($hRegion, 0) ;Create GDI region from GDI+ region
_WinAPI_SetWindowRgn($hGUI, $hRGN) ;Set window region
;Loop until user exits
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
;Clean up resources
_GDIPlus_FontFamilyDispose($hFamily)
_WinAPI_DeleteObject($hRGN)
_GDIPlus_RegionDispose($hRegion)
_GDIPlus_PathDispose($hPath)
_GDIPlus_Shutdown()
EndFunc ;==>Example