FUNCTION getKeywords$()
Get a (space-separated) list of keywords used on the current program line
|
Returns |
A list of keywords |
|
FUNCTION getKeywords$(aPgmLine$)
Get a (space-separated) list of keywords used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
|
Returns |
A list of keywords |
|
FUNCTION getKeywords$(aPgmLine$, aSepChar$)
Get a (aSepChar$ separated) list of keywords used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
aSepChar$ |
The character to use to separate each member of the list; if not set will default to a space. |
|
Returns |
A list of keywords |
|
FUNCTION getKeywordsPlus$()
Get a (space-separated) list of keywords,mnemonics,labels used on the current program line
|
Returns |
A list of keywords, mnemonics, and labels |
|
FUNCTION getKeywordsPlus$(aPgmLine$)
Get a (space-separated) list of keywords,mnemonics,labels used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
|
Returns |
A list of keywords, mnemonics, and labels |
|
FUNCTION getKeywordsPlus$(aPgmLine$, aSepChar$)
Get a (aSpeChar$ separated) list of keywords,mnemonics,labels used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
aSepChar$ |
The character to use to separate each member of the list; if not set will default to a space. |
|
Returns |
A list of keywords, mnemonics, and labels |
|
FUNCTION getLiterals$()
Get a (SEP separated) list of literals used on the current program line
|
Returns |
A list of literals |
|
FUNCTION getLiterals$(aPgmLine$)
Get a (SEP separated) list of literals used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
|
Returns |
A list of literals |
|
FUNCTION getMnemonics$()
Get a (space-separated) list of mnemonics used on the current program line
|
Returns |
A list of mnemonics |
|
FUNCTION getMnemonics$(aPgmLine$)
Get a (space-separated) list of mnemonics used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
|
Returns |
A list of mnemonics |
|
FUNCTION getMnemonics$(aPgmLine$, aSepChar$)
Get a (aSepChar$ separated) list of mnemonics used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
aSepChar$ |
The character to use to separate each member of the list; if not set will default to a space. |
|
Returns |
A list of mnemonics |
|
FUNCTION getRemarks$()
Get remarks for the current program line
|
|
FUNCTION getRemarks$(aPgmLine$)
Get remarks for the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
|
|
FUNCTION getRemarks$(aPgmLine$, aSepChar$)
Get remarks for the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
aSepChar$ |
The character to use to separate each member of the list; if not set will default to a space. |
|
|
FUNCTION getStatementLabels$()
Get a (space-separated) list of statement labels used on the current program line
|
|
FUNCTION getStatementLabels$(aPgmLine$)
Get a (space-separated) list of statement labels used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
|
|
FUNCTION getStatementLabels$(aPgmLine$, aSepChar$)
Get a (aSepChar$ separated) list of statement labels used on the current program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
aSepChar$ |
The character to use to separate each member of the list; if not set will default to a space. |
|
|
FUNCTION getVariables$()
Get a (space-separated) list of variables referenced on the current program line
|
Returns |
A list of variables |
|
FUNCTION getVariables$(aPgmLine$)
Get a (space-separated) list of variables referenced on the specified program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
|
Returns |
A list of variables |
|
FUNCTION getVariables$(aPgmLine$, aSepChar$)
Get a list of variables referenced on the specified program line
|
Parameter | Description |
aPgmLine$ |
The program line to use (NULL value will use current program line) |
aSepChar$ |
The character to use to separate each member of the list; if not set will default to a space. |
|
Returns |
A list of variables |
|