System.Classes.TIdentToInt

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TIdentToInt = function(const Ident: string; var Int: Integer): Boolean;

C++

typedef bool __fastcall (*TIdentToInt)(const System::UnicodeString Ident, int &Int);

Properties

Type Visibility Source Unit Parent
type
typedef
public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

Description

TIdentToInt is a type of callback function used by the IdentToInt routine.

IdentToInt provides the underlying translation from string identifiers to integers that occurs, for example, when you register a mapping using the RegisterIntegerConsts procedure in Delphi.

Ident is the string identifier to translate.

Int returns the corresponding integer value.

See Also