ComponentOne BulletGraph for WinForms
C1.Win.C1Gauge Namespace / C1GaugeClipOperation Enumeration

In This Topic
    C1GaugeClipOperation Enumeration
    In This Topic
    Specifies how the source and given clipping regions can be combined.
    Syntax
    'Declaration
     
    Public Enum C1GaugeClipOperation 
       Inherits System.Enum
    public enum C1GaugeClipOperation : System.Enum 
    Members
    MemberDescription
    ComplementSpecifies that the source region is replaced by the result of the source region being removed from the given region.
    ExcludeSpecifies that the source region is replaced by the result of the given region being removed from the source region.
    IntersectTwo clipping regions are combined by taking their intersection.
    NoneThe source region remains unchanged.
    ReplaceThe source clipping region is replaced by the given region.
    UnionTwo clipping regions are combined by taking the union of both.
    XorTwo clipping regions are combined by taking only the areas enclosed by one or the other region, but not both.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Win.C1Gauge.C1GaugeClipOperation

    See Also