ForegroundMixMode Enumeration
In This Topic
Specifies the foreground mix mode to use when combining the region and the displayed image.
Syntax
'Declaration
<ComVisibleAttribute(True)>
Public Enum ForegroundMixMode
Inherits System.Enum
[ComVisible(true)]
public enum ForegroundMixMode : System.Enum
public enum ForegroundMixMode = class(System.Enum)
ComVisibleAttribute()
public enum ForegroundMixMode extends System.Enum
[ComVisible(true)]
__value public enum ForegroundMixMode : public System.Enum
[ComVisible(true)]
public enum class ForegroundMixMode : public System.Enum
Members
Member | Value | Description |
ForegroundMixModeBLACK | 1 | Pixel is always 0. |
ForegroundMixModeCOPYPEN | 13 | Pixel is the pen color. |
ForegroundMixModeMASKNOTPEN | 3 | Pixel is a combination of the colors common to both the pen and the inverse of the screen. |
ForegroundMixModeMASKPEN | 9 | Pixel is a combination of the colors common to both the pen and the screen. |
ForegroundMixModeMASKPENNOT | 5 | Pixel is a combination of the colors common to both the pen and the inverse of the screen. |
ForegroundMixModeMERGENOTPEN | 12 | Pixel is a combination of the screen color and the inverse of the pen color. |
ForegroundMixModeMERGEPEN | 15 | Pixel is a combination of the pen color and the screen color. |
ForegroundMixModeMERGEPENNOT | 14 | Pixel is a combination of the pen color and the inverse of the screen color. |
ForegroundMixModeNOP | 11 | Pixel remains unchanged. |
ForegroundMixModeNOT | 6 | Pixel is the inverse of the screen color. |
ForegroundMixModeNOTCOPYPEN | 4 | Pixel is the inverse of the pen color. |
ForegroundMixModeNOTMASKPEN | 8 | Pixel is the inverse of the ForegroundMixModeMASKPEN color. |
ForegroundMixModeNOTMERGEPEN | 2 | Pixel is the inverse of the ForegroundMixModeMERGEPEN color. |
ForegroundMixModeNOTXORPEN | 10 | Pixel is the inverse of the R2_XORPEN color. |
ForegroundMixModeUNDEFINED | -1 | Undefined. Do not use. |
ForegroundMixModeWHITE | 16 | Pixel is always 1. |
ForegroundMixModeXORPEN | 7 | Pixel is a combination of the colors in the pen and in the screen, but not in both. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
GdPicture14.ForegroundMixMode
See Also