.NET Framework Class Library
CombineMode Enumeration
|
<< Click to Display Table of Contents >> Navigation: Gnostice Document Studio .NET > Reference Documentation > API Reference > Gnostice.Core.Graphics Namespace > CombineMode Enumeration |
Specifies how different clipping regions can be combined.
Namespace: Gnostice.Core.Graphics
Assembly: Gnostice.Core (in Gnostice.Core.dll)
Visual Basic |
Public Enumeration CombineMode |
C# |
public enum CombineMode |
Visual C++ |
public enum class CombineMode |
Member name |
Value |
Description |
|
Complement |
0 |
Specifies that the existing region is replaced by the result of the existing region being removed from the new region. Said differently, the existing region is excluded from the new region. |
|
Exclude |
1 |
Specifies that the existing region is replaced by the result of the new region being removed from the existing region. Said differently, the new region is excluded from the existing region. |
|
Intersect |
2 |
Two clipping regions are combined by taking their intersection. |
|
Replace |
3 |
One clipping region is replaced by another. |
|
Union |
4 |
Two clipping regions are combined by taking the union of both. |
|
Xor |
5 |
Two clipping regions are combined by taking only the areas enclosed by one or the other region, but not both. |