meta data for this page
  •  

ibec_UTF8ToAnsiString

Performs a conversion of a UTF8 string to an ANSI string.

Description

ibec_UTF8ToAnsiString performs a conversion of UTF8String to Ansistring.

Syntax

  function ibec_UTF8ToAnsiString(UTF8String : string) : string;

Example

 execute ibeblock
 as
 begin
   Str = ibec_UTF8ToAnsiString('Geschäftsführer');
   ibec_ShowMessage(Str);
 end;