System.ConvUtils.ConvUnitToStr
Delphi
function ConvUnitToStr(const AValue: Double; const AType: TConvType): string;
C++
extern DELPHI_PACKAGE System::UnicodeString __fastcall ConvUnitToStr(const double AValue, const TConvType AType);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.ConvUtils.pas System.ConvUtils.hpp |
System.ConvUtils | System.ConvUtils |
説明
尺度とその変換単位を人間が読むことのできる文字列に形式設定します。
ConvUnitToStr 関数を呼び出すと,尺度の文字列表現を取得できます。
AValue は,単位の数です。
AType は,変換の種類(尺度の単位)です。
ConvUnitToString の戻り値は,AValue の文字列表現に,AType が登録されたときに提供された説明を続けたものです。たとえば,
ConvUnitToStr(3.5, duMiles)
というコードでは,文字列「3.5 Miles」が返されます。
警告: 変換の種類を登録するときに提供された説明次第では,略式の文字列が返される場合があります。たとえば,ConvUnitToStr (53, duFahrenheit) は「53 degrees Fahrenheit」ではなく「53 Fahrenheit」という文字列を生成します。