[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Interfaces=Random Info=Represents a pseudo-random number generator, a device that produces a sequence of numbers that meet certain statistical requirements for randomness. [Property] Name=Sets the name of the component. ARG(string)|2| Constructor=Sets the Constructor of the Random class. ARG(enum)|14|0|Constructor,Constructor2 Min=Sets the inclusive lower bound of the random number returned. ARG(int)|1|0 Max=Sets the exclusive upper bound of the random number to be generated. Max must be greater than or equal to zero. ARG(int)|1|0 Seed=Sets a number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used. ARG(int)|1|0 [Methods] *doConstructor=Initializes a new instance of the Random class, using a time-dependent default seed value. ARG()|1|0 *doConstructor2=Initializes a new instance of the Random class, using the specified seed value. ARG(int Seed)|1|0 doNext=Calculates a random number within a specified range. ARG(int Min, int Max)|1|0 *doNext2=Calculates a nonnegative random number less than the specified maximum. ARG(int Max)|1|0 *doNextBytes=Fills the elements of a specified array of bytes with random numbers. ARG(byte[] buffer)|1|0 onNext=Occurs after invoke the method doNext and returns a nonnegative random number less than the specified maximum. ARG(int)|2|1 *onNext2=Occurs after invoke the method doNext2 and returns a nonnegative random number less than the specified maximum. ARG(int)|2|1 Next=Returns a random number within a specified range. ARG(int)|3|1 *Next2=Returns a nonnegative random number less than the specified maximum. ARG(int)|3|1 *NextInteger=Returns a nonnegative random number. ARG(int)|3|1 *NextDouble=Returns a random number between 0.0 and 1.0. ARG(double)|3|7 *Random=Returns the Random object. ARG(Random)|3|0 *buffer=Defines an array of bytes to contain random numbers. ARG(byte[])|4|13 Min=Defines the inclusive lower bound of the random number returned. ARG(int)|4|1 Max=Defines the exclusive upper bound of the random number to be generated. Max must be greater than or equal to zero. ARG(int)|4|1 *Seed=Defines a number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used. ARG(int)|4|1