Used to determine if the page currently run is an Active WEBDEV Page.
// Code run from an Active WEBDEV Page?
IF InAWPMode() = True THEN
// AWP mode
// Processes to perform
...
ELSE
// Non-AWP mode
// Processes to perform
...
END
Syntax
<Result>: Boolean
- True if the page run is an Active WEBDEV Page,
- False in all other cases.
Remarks
Availability of the function
InAWPMode can be used in all IDEs to allow for cross-platform code. Functions or procedures that use InAWPMode can be shared between several products without generating any compilation error.
Business / UI classification: Neutral code