A script-enabled browser is required for this page to function properly.

ORA_NLS.Right_to_Left

Description

Returns true or false, depending on whether the writing direction of the current language is "right-to-left".

Syntax


FUNCTION Ora_Nls.Right_To_Left
RETURN BOOLEAN;

Returns

TRUE or FALSE.

Example


 /*
** Verify that the language is a right-to-left language
*/
rtl := Ora_Nls.Right_To_Left;
IF rtl = FALSE
  Text_IO.Put (langinfo.txt, 'This is not a right to left
    language.');
ENDIF;