59.91 IS_SCREEN_READER_SESSION Function
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;
Parent topic: APEX_UTIL