VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / RegionCombineMode Enumeration
Syntax Members Hierarchy Requirements SeeAlso
In This Topic
RegionCombineMode Enumeration
In This Topic
Specifies available combine modes of different clipping regions.
Syntax
'Declaration

Public Enum RegionCombineMode
   Inherits System.Enum

public enum RegionCombineMode : System.Enum

Members
MemberDescription
ReplaceOne clipping region is replaced by another.
IntersectTwo clipping regions are combined by taking their intersection.
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.
ExcludeSpecifies 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.
ComplementSpecifies 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.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Vintasoft.Imaging.Drawing.RegionCombineMode

Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also