meta data for this page
  •  

ibec_GetIBEVersion

ibec_GetIBEVersion function returns a string representation of the IBExpert/IBEScript version.

Syntax

function ibec_GetIBEVersion() : string;

Example

   execute ibeblock
   as
   begin
     v = ibec_GetIBEVersion;
     ibec_ShowMessage(v);
   end