Previous |
Next |
This function returns a boolean true if the session is in screen reader mode and returns a boolean false if not in screen reader mode.
Syntax
APEX_UTIL.IS_SCREEN_READER_SESSION RETURN BOOLEAN;
Parameters
None
Example
BEGIN IF apex_util.is_screen_reader_session then htp.p('Screen Reader Mode'); END IF; END;