IntToIdent
Looks up an identifier for an integer value in a identifier-to-integer map list.
Declaration
Source position: classesh.inc line 2418
function IntToIdent(Int: LongInt; var Ident: string;
const Map: Array of TIdentMapEntry) : Boolean;
Description
IdentToInt searches Map for an entry whose Value field matches Int and returns the corresponding identifier in Ident. If a match was found, the function returns True, otherwise, False is returned.
See also
| Name | Description |
|---|---|
| IdentToInt | Looks up an integer value in a integer-to-identifier map list. |
| TIdentMapEntry | Record used when associating names with integer values. |
| TIdentToInt | Callback for converting identifiers to integers. |
| TintToIdent | Callback for converting integers to identifiers. |