Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

deInstallApp

deInstallApp( 
w_window 
t_appName 
) 
=> t / nil 

Description

Switches the current application in w_window to t_appName. The enable trigger is called before switching, and if it returns nil, the switch is aborted. Otherwise, the application menus and bindkeys are installed as if the user had executed the corresponding customizer item.

The enable trigger is called with the standard trigger argument, unlike other situations in which the trigger is called. The trigger argument reflects the application which corresponds to t_appName, not the one currently installed in the window.

Arguments

w_window

Window in which the specified application is to be installed as the current application. Defaults to the current window.

t_appName

Name of the application to be installed.

Value Returned

t

The application was successfully installed.

nil

The application was not successfully installed.

Examples

Switches to the application Timing Analysis in window(3).

deInstallApp( window(3) "Timing Analysis" )

Return to top
 ⠀
X