meta data for this page
ibec_AnsiStringToUTF8
Performs the conversion of an ANSI string to UTF8.
Description
ibec_AnsiStringToUTF8 performs a conversion of AnsiString to UTF8 using the current system ANSI code page.
Syntax
function ibec_AnsiStringToUTF8(AnsiString : string) : string;
Example
execute ibeblock
as
begin
Str = ibec_AnsiStringToUTF8('Geschäftsführer');
ibec_ShowMessage(Str);
end;