You are here: GdPicture.NET > Documentation > Structs, Records, Enums > Enumerations > ForegroundMixMode Enumeration
logo.gif
ContentsIndexHome
PreviousUpNext
ForegroundMixMode Enumeration
C#
public enum ForegroundMixMode {
  ForegroundMixModeUNDEFINED = -1,
  ForegroundMixModeBLACK = 1,
  ForegroundMixModeNOTMERGEPEN = 2,
  ForegroundMixModeMASKNOTPEN = 3,
  ForegroundMixModeNOTCOPYPEN = 4,
  ForegroundMixModeMASKPENNOT = 5,
  ForegroundMixModeNOT = 6,
  ForegroundMixModeXORPEN = 7,
  ForegroundMixModeNOTMASKPEN = 8,
  ForegroundMixModeMASKPEN = 9,
  ForegroundMixModeNOTXORPEN = 10,
  ForegroundMixModeNOP = 11,
  ForegroundMixModeMERGENOTPEN = 12,
  ForegroundMixModeCOPYPEN = 13,
  ForegroundMixModeMERGEPENNOT = 14,
  ForegroundMixModeMERGEPEN = 15,
  ForegroundMixModeWHITE = 16
}
Visual Basic
Public Enum ForegroundMixMode
  ForegroundMixModeUNDEFINED = -1
  ForegroundMixModeBLACK = 1
  ForegroundMixModeNOTMERGEPEN = 2
  ForegroundMixModeMASKNOTPEN = 3
  ForegroundMixModeNOTCOPYPEN = 4
  ForegroundMixModeMASKPENNOT = 5
  ForegroundMixModeNOT = 6
  ForegroundMixModeXORPEN = 7
  ForegroundMixModeNOTMASKPEN = 8
  ForegroundMixModeMASKPEN = 9
  ForegroundMixModeNOTXORPEN = 10
  ForegroundMixModeNOP = 11
  ForegroundMixModeMERGENOTPEN = 12
  ForegroundMixModeCOPYPEN = 13
  ForegroundMixModeMERGEPENNOT = 14
  ForegroundMixModeMERGEPEN = 15
  ForegroundMixModeWHITE = 16
End Enum

This is record ForegroundMixMode.

Members
Members 
Description 
ForegroundMixModeUNDEFINED 
Undefined. Don not use. 
ForegroundMixModeBLACK 
Pixel is always 0. 
ForegroundMixModeNOTMERGEPEN 
Pixel is the inverse of the ForegroundMixModeMERGEPEN color. 
ForegroundMixModeMASKNOTPEN 
Pixel is a combination of the colors common to both the pen and the inverse of the screen. 
ForegroundMixModeNOTCOPYPEN 
Pixel is the inverse of the pen color. 
ForegroundMixModeMASKPENNOT 
Pixel is a combination of the colors common to both the pen and the inverse of the screen. 
ForegroundMixModeNOT 
Pixel is the inverse of the screen color. 
ForegroundMixModeXORPEN 
Pixel is a combination of the colors in the pen and in the screen, but not in both. 
ForegroundMixModeNOTMASKPEN 
Pixel is the inverse of the ForegroundMixModeMASKPEN color. 
ForegroundMixModeMASKPEN 
Pixel is a combination of the colors common to both the pen and the screen. 
ForegroundMixModeNOTXORPEN 
Pixel is the inverse of the R2_XORPEN color. 
ForegroundMixModeNOP 
Pixel remains unchanged. 
ForegroundMixModeMERGENOTPEN 
Pixel is a combination of the screen color and the inverse of the pen color. 
ForegroundMixModeCOPYPEN 
Pixel is the pen color. 
ForegroundMixModeMERGEPENNOT 
Pixel is a combination of the pen color and the inverse of the screen color. 
ForegroundMixModeMERGEPEN 
Pixel is a combination of the pen color and the screen color. 
ForegroundMixModeWHITE 
Pixel is always 1. 
What do you think about this topic? Send feedback!
Copyright (c) 2009-2011 www.gdpicture.com. All rights reserved.