This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
| Visual Basic (Declaration) | |
|---|---|
Public Enum ZigZagCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As ZigZagCommandFlags | |
| C# | |
|---|---|
public enum ZigZagCommandFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
public enum class ZigZagCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| Color | Fills any exposed areas with crFill. |
| NoChange | Leaves the exposed area as is, without changing it. |
| PondRippleWave | Creates distortion waves that resemble the ripples in a pond. |
| RadialWave | Creates distortion waves around the CenterPt. |
| Repeat | Stretchs the image edges to fill the exposed area. |
You can use a bitwise OR (|) to specify one flag from each group.
| Group | Flags |
| Flags that indicate how to handle exposed areas | Color, Repeat, NoChange |
| Flags indicate the wave radiation typ | RadialWave, PondRippleWave |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.SpecialEffects.ZigZagCommandFlags
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code