This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum SampleTargetCommandFlags Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[FlagsAttribute()] public enum SampleTargetCommandFlags : Enum |
Managed Extensions for C++ | |
---|---|
[FlagsAttribute()] __value public enum SampleTargetCommandFlags : public Enum |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class SampleTargetCommandFlags : public Enum |
Member | Description |
---|---|
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 |
You can use a bitwise OR (|) to specify one flag from each group.
Group | Flags |
Flags that indicate the channel | Red, Green, Blue, Rgb |
Flags that indicate how other pixel values in the set channel will be affected | Low, Mid, High |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Color.SampleTargetCommandFlags
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