Enum CombineMode
Specifies how different regions can be combined.
public enum CombineMode
Fields
Complement = 5Existing region is replaced by the result of the existing region being removed from the new region. In other words, the existing region is excluded from the new region.
Exclude = 4Existing region is replaced by the result of the new region being removed from the existing region. In other words, the new region is excluded from the existing region.
Intersect = 1Two regions are combined by taking their intersection.
Replace = 0One region is replaced by another.
Union = 2Two regions are combined by taking the union of both.
Xor = 3Two regions are combined by taking only the areas enclosed by one or the other region, but not both.