Paket | mx.resources |
Sınıf | public class Locale |
Miras Alma | Locale Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
İlgili API Öğeleri
Genel Özellikler
Özellik | Tanımlayan: | ||
---|---|---|---|
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
country : String [salt okunur]
The country code of this Locale instance. | Locale | ||
language : String [salt okunur]
The language code of this Locale instance. | Locale | ||
variant : String [salt okunur]
The variant part of this Locale instance. | Locale |
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | Locale | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Returns the locale String that was used to construct
this Locale instance. | Locale | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Özellik Ayrıntısı
country | özellik |
country:String
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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"
Uygulama
public function get country():String
language | özellik |
language:String
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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"
Uygulama
public function get language():String
variant | özellik |
variant:String
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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"
Uygulama
public function get variant():String
Yapıcı Ayrıntı
Locale | () | Yapıcı |
public function Locale(localeString:String)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor.
ParametrelerlocaleString: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" .
|
Yöntem Ayrıntısı
toString | () | yöntem |
public function toString():String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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"Döndürür
String — Returns the locale String that was used to
construct this Locale instance.
|
Tue Jun 12 2018, 01:09 PM Z