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.
Module: aspose.imaging.fileformats.emf.emfplus.consts
Full Name: aspose.imaging.fileformats.emf.emfplus.consts.EmfPlusCombineMode
Members
Member name | Description |
---|---|
COMBINE_MODE_COMPLEMENT | Replaces the existing region with the part of the new region that is not in the existing region. |
COMBINE_MODE_EXCLUDE | Replaces the existing region with the part of itself that is not in the new region. |
COMBINE_MODE_INTERSECT | Replaces the existing region with the intersection of the existing region and the new region. |
COMBINE_MODE_REPLACE | Replaces the existing region with the new region. |
COMBINE_MODE_UNION | Replaces the existing region with the union of the existing and new regions. |
COMBINE_MODE_XOR | Replaces the existing region with the XOR of the existing and new regions. |