GetTypeName (open)
Returns the name of a type
Syntax
// Core function, no LOADLIB necessary
STRING FUNCTION GetTypeName(INTEGER type)Parameters
INTEGER typeTypeID of the type to return the name for
Return value
STRINGThe name of the type
Description
This function returns the name of the type, identified by the type id.
Examples
//Prints "STRING ARRAY"
PRINT(GetTypeName(TypeID(DEFAULT STRING ARRAY)));