System.SysUtils.IntToHex

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function IntToHex(Value: Integer; Digits: Integer): string;
function IntToHex(Value: Int64; Digits: Integer): string;
function IntToHex(Value: UInt64; Digits: Integer): string;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall IntToHex(int Value, int Digits)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

説明

整数の 16 進表現を返します。

IntToHex 関数は,数値をその数値の 16 進(基数 16)表現の文字列に変換します。value は変換する数値です。Digits は,返される 16 進表現の最小桁数を示します。

関連項目