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



Flags that indicate how to handle exposed areas, the type of information in the WaveLength property of the WaveCommand class, or the waveLength parameter of the appropriate WaveCommand Constructor, and the wave type.

Syntax

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

Members

MemberDescription
ColorFill any exposed areas with WaveCommand.FillColor.
CosWaveThe wave is a sinusoidal wave shifted by 90 degrees.
FrequencyThe value in WaveCommand.WaveLength property of the WaveCommand Class, or the waveLength parameter of the appropriate WaveCommand 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 WaveCommand.WaveLength property of the WaveCommand Class, or the waveLength parameter of the appropriate WaveCommand 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.
SinWaveThe wave is a sinusoidal wave.
SquareWaveThe wave is a square wave.
TriangleWaveThe wave is a triangular wave.

Remarks

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

Inheritance Hierarchy

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

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