Version

ColorBlendMode Enumeration

Enumeration indicating the type of color blend operation to be performed.
Syntax
'Declaration
 
Public Enum ColorBlendMode 
   Inherits System.Enum
public enum ColorBlendMode : System.Enum 
Members
MemberDescription
ColorBurnDarkens the backdrop to reflect the source color
ColorDodgeBrightens the backdrop to reflect the source color.
DarkenUses the darker of the backdrop and source color channels.
DifferenceSubtracts the darker of the colors from the lighter.
DivideDivides the surface color from the backdrop
ExclusionProduces an effect similar to Difference but lower in contrast
HardLightCreates an effect similar to shining a harsh spotlight on the backdrop.
HardMixChanges the channel to either the lightest or darkest value if the sum of the backdrop and surface channel is greater than 255.
LightenUses the lighter of the backdrop and source color channels.
LinearBurnDarkens the backdrop to reflect the surface color
LinearDodgeLightens the backdrop to reflect the surface color
LinearLightPerforms a linear burn or dodge of the backdrop depending on the surface color.
MultiplyMultiplies the backdrop and source color channel values.
NormalUses the source color.
OverlaySimilar to HardLight except the source is used as the backdrop.
PinLightIf the surface color is light the backdrop colors darker are replaced.
ScreenMultiplies the complement of the color channel values.
SoftLightCreates an effect similar to shining a diffuse spotlight on the backdrop.
SubtractSubtracts the surface color from the backdrop
VividLightPerforms a color burn or dodge of the backdrop depending on the surface color.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also