Leadtools.ImageProcessing.Color Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
SampleTargetCommandFlags Enumeration
See Also  



Enumerated values that indicate the channel for which to shift the color, and how to remap the other values for that channel.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum SampleTargetCommandFlags 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As SampleTargetCommandFlags
C# 
[FlagsAttribute()]
public enum SampleTargetCommandFlags : Enum 
C++/CLI 
[FlagsAttribute()]
public enum class SampleTargetCommandFlags : public Enum 

Members

MemberDescription
None Reserved.
Red Shift the color in the red channel.
Green Shift the color in the green channel.
Blue Shift the color in the blue channel.
Rgb Shift the color in the red, green, and blue channels.
Low Remap the shadow values for the channel set in the flags parameter or the Flags property.
Mid Remap the midtone values for the channel set in the flags parameter or the Flags property
High Remap the highlight values for the channel set in the flags parameter or the Flags property

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
GroupFlags
Flags that indicate the channelRed, Green, Blue, Rgb
Flags that indicate how other pixel values in the set channel will be affectedLow, Mid, High

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Color.SampleTargetCommandFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also