GetLocale: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "GETLOCALE () '''Description''' GetLocale returns the current language setting for the device. It returns a string of the form xx or xx-yy, where xx is the two digit language...")
 
No edit summary
Line 1: Line 1:
GETLOCALE ()
GetLocale ()


'''Description'''
== Description ==


GetLocale returns the current language setting for the device. It returns a string of the form xx or xx-yy, where xx is the two digit language code.
GetLocale returns the current language setting for the device. It returns a string of the form xx or xx-yy, where xx is the two digit language code.


'''Example'''
== Example ==


<pre>
<pre>
REM GetLocale Example
Rem GetLocale Example
Print GetLocale()
Print GetLocale()
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
Line 22: Line 22:
</pre>
</pre>


'''Related Items'''
== Related Items ==


[[form|FORM]]
[[form|FORM]]
[[Category:Language Reference]]

Revision as of 01:22, 17 August 2012

GetLocale ()

Description

GetLocale returns the current language setting for the device. It returns a string of the form xx or xx-yy, where xx is the two digit language code.

Example

Rem GetLocale Example
Print GetLocale()

Output

en-en
 
or 
 
de

Related Items

FORM