leIsXLAppOrAbove
leIsXLAppOrAbove(
t_appName
)
=> t / nil
Description
Specifies whether the given application is Layout XL or a higher tier application.
Arguments
Value Returned
|
The specified application is Layout XL or a higher tier application. |
|
|
The specified application is not Layout XL or a higher tier application, or the specified name is invalid. |
Example
The following code retrieves the application name in the current window as VLS-XL and returns t to indicate that the current application is Layout XL or a higher tier application.
appName = hiGetAppType(hiGetCurrentWindow())
=>"VLS-XL"
leIsXLAppOrAbove(appName)
=>t
The following code retrieves the application name in the current window as Layout and returns nil to indicate that the current application is not Layout XL or a higher tier application.
appName = hiGetAppType(hiGetCurrentWindow())
=>"Layout"
leIsXLAppOrAbove(appName)
=>nil
Related Topics
Return to top