meta data for this page
ibec_Ord
Returns the ordinal value of the specified character.
Syntax
function ibec_Ord(Chr : char): integer;
Description
The ibec_Ord function returns the ordinal value of the specified character. If Chr is an empty string or NULL, then result is 0.
Example
execute IBEBlock returns (val integer) as begin val= ibec_Ord('A'); suspend; end