ui.Interface.getFrontEndVersion() returns the version of the front end currently used.
Syntax
ui.Interface.getFrontEndVersion()
Parameters
takes no input arguments
Usage and examples
ui.Interface.getFrontEndVersion() returns the version of the front end currently employed to run the application. Takes a STRING variable as a parameter.
The method is typically used for debugging purposes.
The example code given below will produce a message displaying the version of the front end:
MAIN
DEFINE fversion STRING
LET fversion= ui.Interface.getFrontEndVersion()
CALL fgl_winmessage("ui.interface.getFrontEndVersion()", fversion, "info")
END MAIN