System.Classes.TIntToIdent
Delphi
TIntToIdent = function(Int: Integer; var Ident: string): Boolean;
C++
typedef bool __fastcall (*TIntToIdent)(int Int, System::UnicodeString &Ident);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
type typedef |
public | System.Classes.pas System.Classes.hpp |
System.Classes | System.Classes |
Description
TIntToIdent is a type of callback function used by the IntToIdent routine.
TIntToIdent provides the underlying translation from integers to string identifiers that occurs, for example, when you register a mapping using the RegisterIntegerConsts procedure in Delphi.
Int is the integer value to translate.
Ident is the corresponding string value.