EmfRegionMode

EmfRegionMode enumeration

The RegionMode enumeration defines values that are used with EMR_SELECTCLIPPATH and EMR_EXTSELECTCLIPRGN, specifying the current path or a new region that is being combined with the current clip region.

public enum EmfRegionMode

Values

NameValueDescription
RGN_AND1The new clipping region includes the intersection (overlapping areas) of the current clipping region and the current path (or new region).
RGN_OR2The new clipping region includes the union (combined areas) of the current clipping region and the current path (or new region).
RGN_XOR3The new clipping region includes the union of the current clipping region and the current path (or new region) but without the overlapping areas
RGN_DIFF4The new clipping region includes the areas of the current clipping region with those of the current path (or new region) excluded.
RGN_COPY5The new clipping region is the current path (or the new region).

See Also