RegionCombineMode Enumeration

Inndicates how two regions will be combined when calling CombineRgn(IntPtr, IntPtr, IntPtr, RegionCombineMode) function.

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum RegionCombineMode

Remarks

Members

And 1 Creates the intersection of the two combined regions.
Or 2 Creates the union of two combined regions.
Xor 3 Creates the union of two combined regions except for any overlapping areas.
Diff 4 Combines the parts of the region identified by hRgnSrc1 parameter that are not part of the region identified by hRgnSrc2 parameter.
Copy 5 Creates a copy of the region identified by hRgnSrc1 parameter.

See Also