Leadtools.Windows.Media.Effects Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.02.15
AgingCommandBitmapEffectsFlags Enumeration
See Also  
Leadtools.Windows.Media.Effects.SpecialEffects Namespace : AgingCommandBitmapEffectsFlags Enumeration





Flags that indicate the distortion type and the distortion color.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum AgingCommandBitmapEffectsFlags 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As AgingCommandBitmapEffectsFlags
C# 
[FlagsAttribute()]
public enum AgingCommandBitmapEffectsFlags : Enum 
Managed Extensions for C++ 
[FlagsAttribute()]
__value public enum AgingCommandBitmapEffectsFlags : public Enum 
C++/CLI 
[FlagsAttribute()]
public enum class AgingCommandBitmapEffectsFlags : public Enum 
XAML Attributes Usage 

<object property=EnumerationValue .../>

Members

MemberDescription
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 pixel’s color inverse as the color of the pits. If this flag is set, PitsColor will be ignored.
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.

Remarks

You can use a bitwise OR (|) to specify one or more flag(s) from each group.
GroupFlags
Flags that indicate the distortion typeAddNothing, AddVerticalScratch, AddHorizontalScratch, AddDust, AddPits
Flags that indicate the distortion colorScratchInverse, ScratchColor, DustInverse, DustColor, PitsInverse, PitsColor

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Windows.Media.Effects.SpecialEffects.AgingCommandBitmapEffectsFlags

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003

See Also