Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
ContextMenu[CurrentContext][Entries][Disable] - disable an entry in the context menu
Calling Sequence
Entries[Disable](action)
Parameters
action
-
string or list(string); menu entry to be disabled
Description
The Entries[Disable] command prevents an entry from appearing in the context menu until re-enabled with Entries[Enable].
The parameter action specifies the action or actions to disable. If action is a string, any entry in the top-level context menu with this name will be disabled. If action is a list of strings, this is interpreted as a hierarchical sequence of submenus starting from the top-level menu. Any menu entries whose submenu entry sequence begins with action will be disabled.
To remove all references to a given context menu entry from the menu, use Entries[Remove].
Examples of Entries[Disable]
with(ContextMenu[CurrentContext]):
Disable the top-level menu entry that negates a boolean value.
Entries[Disable]("Negate");
Disable the submenu entry that sorts a list in ascending order.
Entries[Disable](["Sorts", "Ascending Order"]);
See Also
ContextMenu, ContextMenu[CurrentContext], Entries/Add, Entries/Enable, Entries/Remove
Download Help Document