CombineMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how different clipping regions can be combined.
public enum class CombineMode
public enum CombineMode
type CombineMode =
Public Enum CombineMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Replace | 0 | One clipping region is replaced by another. |
Intersect | 1 | Two clipping regions are combined by taking their intersection. |
Union | 2 | Two clipping regions are combined by taking the union of both. |
Xor | 3 | Two clipping regions are combined by taking only the areas enclosed by one or the other region, but not both. |
Exclude | 4 | 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. |
Complement | 5 | 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. |