DspGetEnv
- Last UpdatedJul 18, 2023
- 1 minute read
Gets a page environment variable.
Syntax
DspGetEnv(sName)
sName:
The name of the variable (set using the page environment dialog).
Note: Page environment variables are case sensitive.
Return Value
The value of the variable (as a string).
Example
FUNCTION
PageGroup()
PageDisplay(DspGetEnv("GroupMenu"));
END