Property VLGaussNoise.TVLGaussNoise.Seed
From Mitov Wiki Doc
				
				
				
				
																
				
				
								
				This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLGaussNoise
| Contents | 
Syntax
Delphi:
property Seed : Word read FSeed write SetSeed default 31192;
C++ Builder:
__property WORD Seed = { read=FSeed,  write=SetSeed,  default=31192 };
Summary
Initial seed value for the pseudo-random number generation.
Description
Use this property to specify the initial seed value used by
the pseudo-random number generation algorithm.
Delphi example:
VLGaussNoise1.Seed := 2000;
C++ Builder example:
VLGaussNoise1->Seed = 2000;
Visual C++(MFC) example:
VLGaussNoise1.Seed = 2000;
C# example:
gaussNoise1.Seed = 2000;
