Integer Field Format Strings

The table below lists the format string options for integer fields. Valid string formats depend on the format type you select.

Note: A format string must begin with a % sign and end with a format type character:

[%] [type]

Option Description
d Decimal. The value must be an integer. The value is displayed as a decimal.
x Hexadecimal. The format of the field must be an integer value. The value is converted to a string of hexadecimal digits. If the format string contains a precision specifier, it indicates the resulting string must contain at least the specified number of digits; if the value has fewer digits, the resulting string is left-padded with zeros.