Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.11
Iteration Property
See Also 
Leadtools.ImageProcessing.SpecialEffects Namespace > PerlinCommand Class : Iteration Property




Gets or sets the value that indicates the number of iterations that will be calculated.

Syntax

Visual Basic (Declaration) 
Public Property Iteration As Integer
Visual Basic (Usage)Copy Code
Dim instance As PerlinCommand
Dim value As Integer
 
instance.Iteration = value
 
value = instance.Iteration
C# 
public int Iteration {get; set;}
Managed Extensions for C++ 
public: __property int get_Iteration();
public: __property void set_Iteration( 
   int value
);
C++/CLI 
public:
property int Iteration {
   int get();
   void set (int value);
}

Return Value

Value that indicates the number of iterations that will be calculated. Possible values range from 0 to 8. No noise is created if the value is 0. Increasing this value increases the detail in the noise, as well as computation time.

Example

Refer to PerlinCommand example.

Requirements

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

See Also