Enum CombineMode

CombineMode enumeration

Specifies how different clipping regions can be combined.

public enum CombineMode

Values

NameValueDescription
Replace0One clipping region is replaced by another.
Intersect1Two clipping regions are combined by taking their intersection.
Union2Two clipping regions are combined by taking the union of both.
Xor3Two clipping regions are combined by taking only the areas enclosed by one or the other region, but not both.
Exclude4Specifies 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.
Complement5Specifies 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.

See Also