System.SysUtils.TLanguages.ID

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ID[Index: Integer]: string read GetID;

C++

__property System::UnicodeString ID[int Index] = {read=GetID};

Properties

Type Visibility Source Unit Parent
property public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TLanguages

Description

Contains a locale ID as a string.

Read ID to get the locale ID at a specified position in the array as a string. (To get the same ID as an integer, use the LocaleID property.) For example, if U.S. English is the first locale listed in TLanguages, then ID[0] returns the string $00000409. You can iterate through the ID array (from 0 to Count - 1) to determine whether a specific locale is in the array.

See Also