CopyPixelOperation
Determines how the source color in a copy pixel operation is combined with the destination color to result in a final color.
namespace System.Drawing
{
public enum CopyPixelOperation
{
Blackness = 66,
CaptureBlt = 1073741824,
DestinationInvert = 5570569,
MergeCopy = 12583114,
MergePaint = 12255782,
NoMirrorBitmap = int.MinValue,
NotSourceCopy = 3342344,
NotSourceErase = 1114278,
PatCopy = 15728673,
PatInvert = 5898313,
PatPaint = 16452105,
SourceAnd = 8913094,
SourceCopy = 13369376,
SourceErase = 4457256,
SourceInvert = 6684742,
SourcePaint = 15597702,
Whiteness = 16711778
}
}