IsAGRequest function
Syntax
IsAGRequest()
Description
Use the IsAGRequest function to return a Boolean value indicating whether the request was initiated by a component from within an activity guide wrapper.
Important:
Use this function within fluid applications only.
Parameters
None.
Returns
A Boolean value.
Example
If %Request.BrowserDeviceFormFactor = %FormFactor_Small Or
IsAGRequest() = True Or
IsMDRequest() = True Then
/* Some processing */
End-If;