TOGGLE.Dialog Type: LICENSE Purpose: Allow Toggle to be edited, saved, and restored in Setup(). The Toggle is edited using the fields: Prompt [ ] Off or Prompt [X] On When… read more →
TOGGLE.New() Type: CLASS FUNCTION Purpose: Create a Toggle object. Usage: Toggle = TOGGLE.New(Tag, Switch, Prompt) Tag STRING Used in Setup for Save/Restore. Switch BOOL Initial value Prompt… read more →
StrLwr() Type: REGULAR FUNCTION Purpose: Converts all uppercase letters in a string to lowercase. Usage: AllLower = StrLwr(String) String STRING String for conversion. AllLower STRING String converted to… read more →
StrSet() Type: REGULAR FUNCTION Purpose: Sets a character in a string to a new ASCII character specified by an index. Position is zero-based. For example, String = “ABC” StrSet(String, 2,… read more →
StrUpr() Type: REGULAR FUNCTION Purpose: Converts all letters in a string to uppercase. Usage: AllUpper = StrUpr(String) String STRING String for conversion. AllUpper STRING String converted to all… read more →
Suspend() Type: REGULAR FUNCTION Purpose: Allows user to either suspend or continue execution. This function makes use of a query box which asks the user a question and gives the… read more →
Tan() Type: REGULAR FUNCTION Purpose: Calculate the tangent of an angle. The angle must be in radians Usage: Result = Tan(Angle) Angle REAL Angle whose tangent is to be… read more →
Tanh() Type: REGULAR FUNCTION Purpose: Calculate the hyperbolic tangent of a number. The definition of Tanh is: Tanh(x) = Sinh(x) / Cosh(x) Usage: Result = Tanh(Number) Number REAL The… 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 →