System.SysUtils.TLocaleOptions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TLocaleOptions = (loInvariantLocale, loUserLocale);

C++

enum DECLSPEC_DENUM TLocaleOptions : unsigned char { loInvariantLocale, loUserLocale };

Properties

Type Visibility Source Unit Parent
enum public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

TLocaleOptions defines a choice of dependent and independent locale options.

The TLocaleOptions type is an enumeration of two choices for dealing with the operating locale of an application. This Microsoft Windows specific type is used in a number of string handling routines, where the locale language may have a bearing on the routine.



Format Defines

loInvariantLocale

Use this option where a consistent inter-application operation is desired, independent of the actual locale.

loUserLocale

Use this option where the user locale is taken into account.



See Also