Specifies how the source and given clipping regions can be combined.

Namespace:  C1.Web.UI.Controls.C1Gauge
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
public enum C1GaugeClipOperation
Visual Basic (Declaration)
Public Enumeration C1GaugeClipOperation

Members

Member nameDescription
None The source region remains unchanged.
Replace The source clipping region is replaced by the given region.
Intersect Two clipping regions are combined by taking their intersection.
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.
Exclude Specifies that the source region is replaced by the result of the given region being removed from the source region.
Complement Specifies that the source region is replaced by the result of the source region being removed from the given region.

See Also