This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum AgingCommandFlags Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[FlagsAttribute()] public enum AgingCommandFlags : Enum |
Managed Extensions for C++ | |
---|---|
[FlagsAttribute()] __value public enum AgingCommandFlags : public Enum |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class AgingCommandFlags : public Enum |
Member | Description |
---|---|
AddNothing | Do not add any distortion type. In this case, the image will be changed by random changes in the color intensity. |
AddVerticalScratch | Add vertical scratch lines. |
AddHorizontalScratch | Add horizontal scratch lines. |
AddDust | Add dust. |
AddPits | Add pits. |
ScratchInverse | Use the pixel's color inverse as the scratch line color. If this flag is set, ScratchColor will be ignored. |
ScratchColor | Use the value in ScratchColor as the scratch line color. |
DustInverse | Use the pixel's color inverse as the dust color. If this flag is set, DustColor will be ignored. |
DustColor | Use the value in DustColor as the dust color. |
PitsInverse | Use the pixel's color inverse as the color of the pits. If this flag is set, PitsColor will be ignored. |
PitsColor | Use the value in PitsColor as the color of the pits. |
You can use a bitwise OR (|) to specify one or more flag(s) from each group.
Group | Flags |
Flags that indicate the distortion type | AddNothing, AddVerticalScratch, AddHorizontalScratch, AddDust, AddPits |
Flags that indicate the distortion color | ScratchInverse, ScratchColor, DustInverse, DustColor, PitsInverse, PitsColor |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.SpecialEffects.AgingCommandFlags
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