Specifies how a new region is combined with an existing region.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPRegionCombineMode = (
cmReplace,
cmIntersect,
cmUnion,
cmXor,
cmExclude,
cmComplement
);
|
|
Name
|
Description
|
|
cmComplement
|
Specifies that the existing region is replaced by the portion of the new region that is outside of the existing region.
|
|
cmExclude
|
Specifies that the existing region is replaced by the portion of itself that is outside of the new region.
|
|
cmIntersect
|
Updates this region to the portion of itself that intersects the specified object's interior.
|
|
cmReplace
|
New region replaces existing region
|
|
cmUnion
|
Updates this region to all portions (intersecting and nonintersecting) of itself and all portions of another object
|
|
cmXor
|
Updates this region to the nonintersecting portions of itself and the specified object's interior
|
Top
|