RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SysUtils.TLangRec Record

TLangRec declares a record used to describe a Windows locale.

Pascal
TLangRec = packed record
  FName: string;
  FLCID: LCID;
  FExt: string;
end;
C++
struct TLangRec {
  AnsiString FName;
  LCID FLCID;
  AnsiString FExt;
};

The TLangRec type declares a record that holds the attributes of a Windows language. The record is principally used internally by TLanguages.  

FName holds the Windows locale name. 

FLCID holds the local id for the Windows locale. 

FExt holds the recommended filename extension for the Windows locale. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!