meta data for this page
  •  

ibec_Chr

Returns the character for a specified ASCII value.

Syntax

function ibec_Chr(X : integer): string;

Description

ibec_Chr returns the character with the ordinal value(ASCII value) of the byte-type expression, X.

Example

execute IBEBlock
returns (cout varchar(1))
as
begin
  i = 0;
  while (i < 256) do
  begin
    cout = ibec_Chr(i);
    i = i + 1;
    suspend;
  end
end