Prototype
StrHex:=IntToHex(intValue,intDigita)
Description
It converts an integer in a string representing aexadecimal number .
Parameters
IntValue: integer value to be converted into exadecimal.
IntDigita: integer value showing how many digits the exadecimal number has to have.
Returned value
StrHext: string containing the converted number.
Notes
None
Example
// It returns string 0A
IntToHex(10,2);