Pakiet | mx.resources |
Klasa | public class Locale |
Dziedziczenie | Locale Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
"en_US_MAC"
into its three parts: a language code, a country code, and a variant.
The localization APIs in the IResourceManager and IResourceBundle interfaces use locale Strings rather than Locale instances, so this class is seldom used in an application.
Powiązane elementy interfejsu API
Właściwości publiczne
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
country : String [tylko do odczytu]
The country code of this Locale instance. | Locale | ||
language : String [tylko do odczytu]
The language code of this Locale instance. | Locale | ||
variant : String [tylko do odczytu]
The variant part of this Locale instance. | Locale |
Metody publiczne
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Constructor. | Locale | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Returns the locale String that was used to construct
this Locale instance. | Locale | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Szczegół właściwości
country | właściwość |
country:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The country code of this Locale instance. [Read-Only]
var locale:Locale = new Locale("en_US_MAC"); trace(locale.country); // outputs "US"
Implementacja
public function get country():String
language | właściwość |
language:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The language code of this Locale instance. [Read-Only]
var locale:Locale = new Locale("en_US_MAC"); trace(locale.language); // outputs "en"
Implementacja
public function get language():String
variant | właściwość |
variant:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The variant part of this Locale instance. [Read-Only]
var locale:Locale = new Locale("en_US_MAC"); trace(locale.variant); // outputs "MAC"
Implementacja
public function get variant():String
Konstruktor Szczegół
Locale | () | Konstruktor |
public function Locale(localeString:String)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Constructor.
ParametrylocaleString:String — A 1-, 2-, or 3-part locale String,
such as "en" , "en_US" , or "en_US_MAC" .
The parts are separated by underscore characters.
The first part is a two-letter lowercase language code
as defined by ISO-639, such as "en" for English.
The second part is a two-letter uppercase country code
as defined by ISO-3166, such as "US" for the United States.
The third part is a variant String, which can be used
to optionally distinguish multiple locales for the same language and country.
It is sometimes used to indicate the operating system
that the locale should be used with, such as "MAC" , "WIN" , or "UNIX" .
|
Szczegół metody
toString | () | metoda |
public function toString():String
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the locale String that was used to construct this Locale instance. For example:
var locale:Locale = new Locale("en_US_MAC"); trace(locale.toString()); // outputs "en_US_MAC"Zwraca
String — Returns the locale String that was used to
construct this Locale instance.
|
Tue Jun 12 2018, 12:06 PM Z