Exits the running client, as long as the shutdown intercept script doesn't cancel the shutdown event. Set force to true to not give the shutdown intercept script a chance to cancel the exit. Note that this will quit the Client completely. you can use system.security.logout() to return to the login screen.


system.util.exit([force])

  • Parameters

Boolean force - If true, the shutdown-intercept script will be skipped. Default is false. [optional]

  • Returns

Nothing

  • Scope

Vision Client

# This code would exit the client after confirming with the user.
if system.gui.confirm("Are you sure you want to exit?"):
   system.util.exit()

system util exit, util.exit