Product Information > JADE Encyclopaedia of Classes – Volume 1 > Chapter 1 - System Classes > getSystemVersion

getSystemVersion

getSystemVersion(): String;

The getSystemVersion method of the Application class returns a string containing the JADE system version; for example:

vars
    jadver : String;
begin
    jadver := app.getSystemVersion;
    write jadver;                   // Outputs 7.1.03, for example
end;