StrLen() Type: REGULAR FUNCTION Purpose: Returns the number of characters in a string, not including the terminating null character. Usage: Length = StrLen(String) String STRING String for which to… read more →
StatsOne() Type: REGULAR FUNCTION Purpose: Calculate statistical information on a set of data. The data set can include all of the data in a DATACOL object, or a subset of… read more →
StatsTwo() Type: REGULAR FUNCTION Purpose: Calculate statistical information between two sets of data. Calculate statistical information between two sets of data. The data set can include all of the data… read more →
Stdout() Type: REGULAR FUNCTION Purpose: Stdout sends output to the STDOUT window. This is a useful function when debugging a new Explain™ script. Numerical values, text values, or any combination… read more →
StdoutActivate() Type: REGULAR FUNCTION Purpose: StdoutActivate brings the STDOUT window to the foreground when running an Explain™ script. This is a useful function if text descriptors or numerical values are… read more →
STATIC.New() Type: CLASS FUNCTION Purpose: Create a Static object. Usage: Static = STATIC.New(“Text”) Text TEXT Any text. “Text” can be replaced with a string object. Static STATIC Related… read more →
Sleep() Type: REGULAR FUNCTION Purpose: Pauses the execution of this script until a specific time or until the user clicks the SKIP button. Times used in Sleep() are in system… read more →
Sqrt() Type: REGULAR FUNCTION Purpose: Take the square root of a number. Usage: Result = Sqrt(Number) Number REAL Number to be square-rooted. If Number < 0, absolute value is… read more →