LEADTOOLS Image Processing (Leadtools.ImageProcessing.SpecialEffects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
RadialWaveCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : RadialWaveCommandFlags Enumeration



Enumeration that indicates how to handle exposed areas, the type of information in the WaveLength property or waveLength parameter if you are using the appropriate Constructor, and the wave type.

Syntax

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

Members

MemberDescription
ColorFill any exposed areas with the RadialWaveCommand.FillColor, or the fillColor parameter if you are using the appropriate Constructor.
FrequencyThe value in the RadialWaveCommand.WaveLength property, or the waveLength parameter if you are using the appropriate Constructor, is the frequency, or the number of times the wave repeats.
NoChangeLeave the exposed area as is, without changing it.
PeriodThe value of the RadialWaveCommand.WaveLength property, or the waveLength parameter if you are using the appropriate Constructor, is a wave length given as a percent of the image dimensions. If this flag is used, the valid range is from 0 to 100.
RepeatStretch the image edges to fill the exposed area.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Exposed Areas Color, Repeat, NoChange
WaveLength Period, Frequency

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.SpecialEffects.RadialWaveCommandFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also