awvCloseCalculator
awvCloseCalculator( [t_sessionName] ) =>t/nil
Description
Closes the Calculator invoked from the current session or from the specified session.
Arguments
|
This is an optional argument. If you do not specify this argument, the current session is used. |
Value Returned
|
The Calculator cannot be closed because the specified session does not exist. |
Examples
The following example closes the Calculator from the current session.
awvCloseCalculator()
=> t
The following example closes the Calculator invoked from the specified session.
session=maeGetSessions()
=> ("fnxSession1")
awvCloseCalculator("fnxSession1")
=> t
Return to top