Icon IntToHex

Unit: Internal

Available In: Client and Server Applications

function IntToHex(Value: Integer; Digits: Integer): String

The IntToHex function returns a formatted hexadecimal string for the Integer input parameter. The Digits input parameter indicates the minimum length of the String return value.

Examples

X := IntToHex(1052);  // X is '041C'
Image