表示: Delphi
C++
表示設定
System.SysUtils.TFormatSettings
提供:XE2 API Documentation
Delphi
TFormatSettings = record strict private {$IF DEFINED(MSWINDOWS) OR DEFINED(LINUX)} class function AdjustLocaleName(const LocaleName: string): string; static; class procedure GetDayNames(Locale: TLocaleID; var AFormatSettings: TFormatSettings); static; class procedure GetMonthNames(Locale: TLocaleID; var AFormatSettings: TFormatSettings); static; class function GetString(Locale: TLocaleID; LocaleItem, DefaultIndex: Integer; const DefaultValues: array of Pointer): string; static; {$IFEND} {$IF DEFINED(MACOS)} class procedure GetDayNames(Formatter: CFDateFormatterRef; var AFormatSettings: TFormatSettings); static; class procedure GetMonthNames(Formatter: CFDateFormatterRef; var AFormatSettings: TFormatSettings); static; {$IFEND} class function TranslateDateFormat(Locale: TLocaleID; LocaleType: Integer; const Default: string; const Separator: Char): string; static; public CurrencyString: string; CurrencyFormat: Byte; CurrencyDecimals: Byte; DateSeparator: Char; TimeSeparator: Char; ListSeparator: Char; ShortDateFormat: string; LongDateFormat: string; TimeAMString: string; TimePMString: string; ShortTimeFormat: string; LongTimeFormat: string; ShortMonthNames: array[1..12] of string; LongMonthNames: array[1..12] of string; ShortDayNames: array[1..7] of string; LongDayNames: array[1..7] of string; ThousandSeparator: Char; DecimalSeparator: Char; TwoDigitYearCenturyWindow: Word; NegCurrFormat: Byte; class function Create: TFormatSettings; overload; static; inline; class function Create(Locale: TLocaleID): TFormatSettings; overload; platform; static; class function Create(const LocaleName: string): TFormatSettings; overload; static; end;
C++
struct DECLSPEC_DRECORD TFormatSettings{ private: typedef System::StaticArray<System::UnicodeString, 12> _TFormatSettings__1; typedef System::StaticArray<System::UnicodeString, 12> _TFormatSettings__2; typedef System::StaticArray<System::UnicodeString, 7> _TFormatSettings__3; typedef System::StaticArray<System::UnicodeString, 7> _TFormatSettings__4; private: static System::UnicodeString __fastcall AdjustLocaleName(const System::UnicodeString LocaleName); static void __fastcall GetDayNames(unsigned Locale, TFormatSettings &AFormatSettings); static void __fastcall GetMonthNames(unsigned Locale, TFormatSettings &AFormatSettings); static System::UnicodeString __fastcall GetString(unsigned Locale, int LocaleItem, int DefaultIndex, void * const *DefaultValues, const int DefaultValues_Size); static System::UnicodeString __fastcall TranslateDateFormat(unsigned Locale, int LocaleType, const System::UnicodeString Default, const System::WideChar Separator); public: System::UnicodeString CurrencyString; System::Byte CurrencyFormat; System::Byte CurrencyDecimals; System::WideChar DateSeparator; System::WideChar TimeSeparator; System::WideChar ListSeparator; System::UnicodeString ShortDateFormat; System::UnicodeString LongDateFormat; System::UnicodeString TimeAMString; System::UnicodeString TimePMString; System::UnicodeString ShortTimeFormat; System::UnicodeString LongTimeFormat; _TFormatSettings__1 ShortMonthNames; _TFormatSettings__2 LongMonthNames; _TFormatSettings__3 ShortDayNames; _TFormatSettings__4 LongDayNames; System::WideChar ThousandSeparator; System::WideChar DecimalSeparator; System::Word TwoDigitYearCenturyWindow; System::Byte NegCurrFormat; static TFormatSettings __fastcall Create()/* overload */; static TFormatSettings __fastcall Create(unsigned Locale)/* overload */; static TFormatSettings __fastcall Create(const System::UnicodeString LocaleName)/* overload */; };
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 |
|---|---|---|---|---|
struct class |
public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
説明
TFormatSettings では、スレッドセーフな文字列書式設定コンテキストを定義しています。
TFormatSettings では、文字列書式設定ルーチンで使用するロケール情報を含むデータ構造を定義しています。 TFormatSettings の各メンバは、同じ名前のグローバル変数と同等です。 TFormatSettings 型の変数にはスレッドセーフなコンテキストが定義されており、書式設定関数では、スレッドセーフではないデフォルトのグローバル コンテキストの代わりにこのコンテキストを使用することができます。
TFormatSettings で定義されたスレッドセーフな環境を作成して使用する手順は以下のとおりです。
- TFormatSettings 型の変数を宣言します。
- TFormatSettings.Create を呼び出して、TFormatSettings 変数にロケール情報を設定します。
- TFormatSettings 変数を文字列書式設定ルーチンの最後のパラメータとして渡します。
TFormatSettings パラメータを受け取るルーチンはどれも、スレッドセーフであり、グローバルな書式設定変数を参照する同等の関数をオーバーロードしています。