|
|
|
|
|
HsMenu,Status (Idioma externo) Devuelve el estado de una opción de menú (activa, invisible, en gris). // In C // Status of the option corresponding to the LC path CALLWD("HsMenu,Status,LC"); if WDInt==1 CALLWD("INFO, The option is not active"); // Status of the option #15 CALLWD("HsMenu,Status,15"); if WDInt==2 CALLWD("INFO, The option does not appear"); // In Pascal (* Status of the option corresponding to the LC path *) CALLWD('HsMenu,Status,LC'); if WDInt=1 then CALLWD('INFO, The option is not active'); (* Status of option #15 *) CALLWD('HsMenu,Status,15'); if WDInt=2 then CALLWD('INFO, The option does not appear'); // In VB ' Status of the option corresponding to the LC path call CALLWD("HsMenu,Status,LC") if WDInt=1 then call CALLWD('INFO, The option is not active') end if ' Status of option #15 call CALLWD("HsMenu,Status,15") if WDInt=2 then call CALLWD("INFO, The option does not appear") end if Sintaxis
HsMenu,Status([<Option>])
<Option>: Cadena de caracteres (opcional) Número que corresponde a:- el subíndice de la opción
- una cadena de caracteres correspondiente a la ruta de acceso a la opción (accesos directos).
Observaciones HsMenu, Status devuelve el estado de la opción de menú en WdInt. Este status puede corresponder a: - -1 si la opción no existe
- 0 si la opción está activa
- 1 si la opción está en gris
- 2 si la opción es invisible
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|