RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Classes.FindIdentToInt Function

Returns the TIdentToInt conversion routine for a given data type.

Pascal
function FindIdentToInt(AIntegerType: Pointer): TIdentToInt;
C++
TIdentToInt FindIdentToInt(void * AIntegerType);

RegisterIntegerConsts is used internally within Delphi to define conversions between name-string and integer value pairs. For example, the Graphics unit uses this routine to register named colours, such as 'clMaroon', which is registered as integer value $000080. The conversion function is defined by type, TColor in this example.  

FindIdentToInt is called to return the TIdentToInt routine to be called to perform an Ident string to integer value conversion. You pass a data type in AIntegerType that identifies the conversion. For example, you would pass TypeInfo(TColor) if you wanted to be returned the Graphics unit registered TColor value converion function. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!