Description
Read-write. Returns the percentage (0-100) that the IsSample property randomly returns as true. This method is required if the IsSample property is used.
Applicable Events
AnyApp Pre-Application, AnyApp Post-Algorithm, AnyApp Post-Application, Post Extract, AnyApp Post Extract, Pre-Verify, Interactive, Verification Function Key (F-Key), Post-Verify
Syntax
object.SetSampleRate (#)
Parameters
Object is a reference to the Application object. For more information, see Application Object (page Application Object).
SetSampleRate is the command.
# indicates the percentage that is to be randomly returned as true.
Example
Application.SetSampleRate (40)
S = “”
For I = 1 to 10
If Application.IsSample = True then
S = s & “Y”
Else
S = s & “N”
End if
Next
MsgBox s