Visual Basic (Declaration) | |
---|---|
Public Function New( _ ByVal amplitude As Integer, _ ByVal attenuation As Integer, _ ByVal frequency As Integer, _ ByVal phase As Integer, _ ByVal centerPoint As Point, _ ByVal fillColor As RasterColor, _ ByVal flags As ZigZagCommandFlags _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public ZigZagCommand( int amplitude, int attenuation, int frequency, int phase, Point centerPoint, RasterColor fillColor, ZigZagCommandFlags flags ) |
C++/CLI | |
---|---|
public: ZigZagCommand( int amplitude, int attenuation, int frequency, int phase, Point centerPoint, RasterColor fillColor, ZigZagCommandFlags flags ) |
Parameters
- amplitude
- Non-zero value that represents the magnitude of the wave (amount of displacement), if RadialWave is set in the flags parameter. The valid range is from 1 - 100.
- attenuation
- Attenuation value. The attenuation value indicates how rapidly the wave amplitude decays as the wave travels along the radial line. The valid range is from 0 - 1000.
- frequency
- Number of times the waves repeat along the radial line.
- phase
- Wave phase shift, in hundredths of degrees. The valid range is from -36000 to 36000 (The value in degrees is phase divided by 100).
- centerPoint
- Point that contains the center of the zigzag wave.
- fillColor
- The RasterColor value that specifies the fill color for any exposed areas.
- flags
- Flags that indicate how to handle exposed areas, and the wave radiation type.
Run the ZigZagCommand on an image and applies the ZigZag filter.
Visual Basic | Copy Code |
---|---|
Public Sub ZigZagConstructorExample() |
C# | Copy Code |
---|---|
public void ZigZagConstructorExample() |
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