IsFluidNotifyEnabled function
Syntax
IsFluidNotifyEnabled()
Description
Use the IsFluidNotifyEnabled function to return a Boolean value indicating whether the Notify option is enabled on the component's Fluid tab.
Important:
Use this function within fluid applications only.
Parameters
None.
Returns
A Boolean value.
Example
Local boolean &NotifyAuthorized = False;
If IsFluidNotifyEnabled() Then
&NotifyAuthorized = IsMenuItemAuthorized(MenuName.PTPNEVENTS, BarName.USE, ItemName.PTPN_SHARE_OPT, Page.PTNC_NOTIFY_CFG, %Action_UpdateDisplay);
End-If;