CombineMode

CombineMode enum

Specifies how clipping regions are combined.

enum class CombineMode

Values

NameValueDescription
Replace0One clipping region is replaced by another.
Intersect1The two clipping regions are combined by taking their intersection.
Union2The two clipping regions are combined by taking the union of both.
Xor3The two clipping regions are combined by taking only the area enclosed by one or the other regions, but not both.
Exclude4Two clipping regions are combined by taking the area of the first region that does not intersect with the second.
Complement5Two clipping regions are combined by taking the area of the second region that does not intersect with the first.

See Also