APP_ListFunctions

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Application functions >

APP_ListFunctions

 

Description

 

Returns a string containing the list of User Defined Functions (UDF) and Declare Functions (API) inside current script.

 

Syntax

 

s = APP_ListFunctions [(ListSeparator)]

 

Returns

 

String

 

Parameters

 

Name

Type

Optional

Meaning

ListSeparator

String

Yes

Specify a separator that will be placed between every function. If empty, $TAB will be used as list separator.

 

Remarks

 

After Function name will be placed function type (UDF or API) separated by a colon ":".

For example:

MyFunction:UDF

AllocConsole:API

 

Restrictions

 

See also

 

APP_ListEquates  

 

Examples