deGetLowerTierApp
deGetLowerTierApp(t_appName[x_lowerBy] ) =>l_lowertierAppNames
Description
Returns a list of application names, which are x_lowerBy levels lower in tier in the same family of given t_appName. The default value for x_lowerBy is one.
Arguments
|
Specifies the name of the application name for which you want to find out the lower tier applications |
|
|
Specifies the number of lower levels that you want to find out. The default is one. |
Value Returned
|
List of application names, which are x_lowerBy levels lower in tier in the same family of given t_appName |
Example
(deGetLowerTierApp "VLS-EXL") => ("Virtuoso XL")
(deGetLowerTierApp "Virtuoso XL") => ("Layout")
(deGetLowerTierApp "VLS-EXL" 2) => ("Layout")
Return to top