GetLocaleFormatSettings - C++ Builder

C++ Builder 参考手册 ➙ System::Sysutils ➙ GetLocaleFormatSettings


获取地区的日期时间、货币和数字的格式

头文件:#include
命名空间:System::Sysutils
函数原型:

void __fastcall GetLocaleFormatSettings(unsigned Locale, TFormatSettings &AFormatSettings);

参数:

  • Locale: 地区的 LCID,如果是 Windows 操作系统可以用 MAKELANGID 生成;
  • AFormatSettings:返回 Locale 地区的日期时间、货币和数字的格式;

返回值:

  • 通过参数 AFormatSettings 返回地区的日期时间、货币和数字的格式,函数无返回值;
  • 这是过时的函数,需要用 TFormatSettings 的 Create 方法代替;
  • FloatToStr、FormatFloat、FormatCurr、DateTimeToStr 等数字、时间和货币等相关函数,如果这些函数有 TFormatSettings 类型的参数,就需要用 TFormatSettings 的 Create 方法获取地区的格式,如果没有这个类型的参数,就使用了 FormatSettings 全局变量。

例:请参考 FloatToStrF 、CurrToStrF 及其他本文底部「相关」项目的例子


相关:

  • System::Sysutils::FloatToStrF
  • System::Sysutils::FloatToStr
  • System::Sysutils::FloatToText
  • System::Sysutils::CurrToStr
  • System::Sysutils::CurrToStrF
  • System::Sysutils::DateTimeToStr
  • System::Sysutils::DateTimeToString
  • System::Sysutils::FormatDateTime
  • System::Sysutils::FormatFloat
  • System::Sysutils::FormatCurr
  • System::Sysutils::GetFormatSettings
  • System::Sysutils::FormatSettings
  • System::Sysutils::TFormatSettings
  • System::Sysutils::TFormatSettings::Create
  • System::Sysutils

C++ Builder 参考手册 ➙ System::Sysutils ➙ GetLocaleFormatSettings

你可能感兴趣的:(GetLocaleFormatSettings - C++ Builder)