Enum IGDIPlus.TGPCombineMode
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 20:45, 30 October 2012
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPCombineMode = (CombineModeReplace, CombineModeIntersect, CombineModeUnion, CombineModeXor, CombineModeExclude, CombineModeComplement);
C++ Builder:
enum TGPCombineMode {CombineModeReplace, CombineModeIntersect, CombineModeUnion, CombineModeXor, CombineModeExclude, CombineModeComplement};
Visual C++ (MFC):
enum CTGPCombineMode {CombineModeReplace, CombineModeIntersect, CombineModeUnion, CombineModeXor, CombineModeExclude, CombineModeComplement};
Summary
Specifies how a new region is combined with an existing region.
Description
Defines enumeration that specifies how a new region is combined with an existing region.
Values
CombineModeReplace | Specifies that the existing region is replaced by the new region. |
CombineModeIntersect | Specifies that the existing region is replaced by the intersection of itself and the new region. |
CombineModeUnion | Specifies that the existing region is replaced by the union of itself and the new region. |
CombineModeXor | Specifies that the existing region is replaced by the result of performing an XOR on the two regions. A point is in the XOR of two regions if it is in one region or the other but not in both regions. |
CombineModeExclude | Specifies that the existing region is replaced by the portion of itself that is outside of the new region. |
CombineModeComplement | Specifies that the existing region is replaced by the portion of the new region that is outside of the existing region. |