Passa al contenuto principale

IntToHex

Returns the hex representation of an integer.

Structure

IntToHex(Value: Integer; Digits: Integer): string; overload;

IntToHex(Value: Int64; Digits: Integer): string; overload;

Parameters

Return Value

Description

IntToHex converts a number into a string containing the number's hexadecimal (base 16) representation. Value is the number to convert. Digits indicates the minimum number of hexadecimal digits to return. |