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



Gets or sets an array of integers that represent wave values.

Syntax

Visual Basic (Declaration) 
Public Property Amplitudes As Integer()
Visual Basic (Usage)Copy Code
Dim instance As FreeHandWaveCommand
Dim value() As Integer
 
instance.Amplitudes = value
 
value = instance.Amplitudes
C# 
public int[] Amplitudes {get; set;}
C++/CLI 
public:
property array<int>^ Amplitudes {
   array<int>^ get();
   void set (    array<int>^ value);
}

Property Value

Array of integers that represent wave values. The real value of the array elements is divided by 1000, and the valid value of each element in the array is between -1000 and 1000. These values are generally obtained from the Leadtools.ImageProcessing.Effects.EffectsUtilities.GetCurvePoints(System.Int32[],Leadtools.LeadPoint[],Leadtools.ImageProcessing.Effects.CurvePointsType) utility method. They may also be obtained through the FreeHandWave Dialog.

Example

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