[]
Specifies how the source and given clipping regions can be combined.
public enum C1GaugeClipOperation
| Name | Description |
|---|---|
| Complement | Specifies that the source region is replaced by the result of the source region being removed from the given region. |
| Exclude | Specifies that the source region is replaced by the result of the given region being removed from the source region. |
| Intersect | Two clipping regions are combined by taking their intersection. |
| None | The source region remains unchanged. |
| Replace | The source clipping region is replaced by the given region. |
| Union | Two clipping regions are combined by taking the union of both. |
| Xor | Two clipping regions are combined by taking only the areas enclosed by one or the other region, but not both. |