ui.Interface.getFrontEndVersion() returns the version of the front end currently used.
Syntax:
ui.Interface.getFrontEndVersion()
Arguments:
takes no input arguments |
Usage and examples:
ui.Interface.getFrontEndVersion() returns the version of the front end currently employed to run the application. Needs a STRING variable.
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
Related articles: