enabled

Determines whether the specified M-Business Client menu item is enabled or disabled.

Note

On the menu items listed below, M-Business Client will override any changes in the menu item's enabled status that conflict with the device state. This will happen the first time that the user displays the menu containing that menu item, so the user will never see the conflicting setting.

  • Back

  • Copy

  • Cut

  • Forward

  • Full screen

  • Paste

  • Select all

  • Sync

  • Work Offline

  • Work Online

Interface

PODSMenuItem

IDL definition
attribute PODSBoolean enabled;
JavaScript synopsis
menuitem.enabled
menuitem.enabled = bool
C synopsis
PODSBoolean PODSgetEnabled(PODSMenuItem* menuitem);
void PODSsetEnabled(PODSMenuItem* menuitem, PODSBoolean bool);
Parameters
  • menuitem   The PODSMenuItem object.

  • bool   A boolean value: PODS_TRUE to enable the menu item; PODS_FALSE to disable it.

Returns
  •       PODS_TRUE if the menu item is enabled; PODS_FALSE otherwise.

  • Setter:   None