Property VLUniformNoise.TVLUniformNoise.Low
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: TVLUniformNoise
Contents |
Syntax
Delphi:
property Low : Byte read FLow write SetLow default 0;
C++ Builder:
__property BYTE Low = { read=FLow, write=SetLow, default=0 };
Summary
Lower bound value for the generated values.
Description
The lower bound for the range of uniformly distributed
values.
Use this property to specify the lower bound for the range of
uniformly distributed values.
Delphi example:
VLUniformNoise1.Low := 10;
C++ Builder example:
VLUniformNoise1->Low = 10;
Visual C++(MFC) example:
VLUniformNoise1.Low = 10;
C# example:
uniformNoise1.Low = 10;