Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
SetBlendModeKey Method
See Also 
Leadtools.Codecs Namespace > CodecsPsdLayerInfo Class : SetBlendModeKey Method



blendModeKey

A four byte character array that represents the blend mode key for the layer. Possible values are:

ValueMeaning
'norm'Normal.
'dark'Darken.
'lite'Lighten.
'hue 'Hue.
'sat 'Saturation.
'colr'Color.
'lum 'Luminosity.
'mul 'Multiply.
'scrn'Screen.
'diss'Dissolve.
'over'Overlay.
'hLit'Hard light.
sLit'Soft light.
'diff'Difference.
'smud'Exclusion.
'div 'Dodge.
'idiv'Color burn.

Sets the blend mode key for the layer.

Syntax

Visual Basic (Declaration) 
Public Sub SetBlendModeKey( _
   ByVal blendModeKey() As Byte _
) 
Visual Basic (Usage)Copy Code
Dim instance As CodecsPsdLayerInfo
Dim blendModeKey() As Byte
 
instance.SetBlendModeKey(blendModeKey)
C# 
public void SetBlendModeKey( 
   byte[] blendModeKey
)
C++/CLI 
public:
void SetBlendModeKey( 
   array<byte>^ blendModeKey
) 

Parameters

blendModeKey

A four byte character array that represents the blend mode key for the layer. Possible values are:

ValueMeaning
'norm'Normal.
'dark'Darken.
'lite'Lighten.
'hue 'Hue.
'sat 'Saturation.
'colr'Color.
'lum 'Luminosity.
'mul 'Multiply.
'scrn'Screen.
'diss'Dissolve.
'over'Overlay.
'hLit'Hard light.
sLit'Soft light.
'diff'Difference.
'smud'Exclusion.
'div 'Dodge.
'idiv'Color burn.

Example

Remarks

For more information, refer to the FILE FORMATS SPECIFICATION from Adobe.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also