EmfPlusCombineMode

EmfPlusCombineMode enumeration

The CombineMode enumeration defines modes for combining two graphics regions. In the following descriptions, the regions to be combined are referred to as the “existing” and “new” regions.

public enum EmfPlusCombineMode : byte

Values

NameValueDescription
CombineModeReplace0Replaces the existing region with the new region.
CombineModeIntersect1Replaces the existing region with the intersection of the existing region and the new region.
CombineModeUnion2Replaces the existing region with the union of the existing and new regions.
CombineModeXor3Replaces the existing region with the XOR of the existing and new regions.
CombineModeExclude4Replaces the existing region with the part of itself that is not in the new region.
CombineModeComplement5Replaces the existing region with the part of the new region that is not in the existing region.

See Also