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[Install] - install context menu that replaces current context menu
Calling Sequence
Install(CM)
Parameters
CM
-
(optional) context menu module; context menu to be made active
Description
The Install command replaces the current context menu module, ContextMenu[CurrentContext], with a specified context menu module. After this command is executed, the new context menu module is accessible as ContextMenu[CurrentContext], and is used by Maple to generate the contents of context-sensitive menus.
The CM parameter specifies the context menu module to install. If CM is not specified, the Maple default context-sensitive menu system is installed.
For information on creating or extending context menu modules in Maple, see About Creating Context-Sensitive Menus.
Examples of ContextMenu[Install]
with(ContextMenu):
Replace the current context menu with a new context menu.
newCM := New():
newCM[Entries][Add]("Multiply by 2", "2*%EXPR", numeric);
newCM[Queries][Add]("Divisible by 2", proc(p) evalb(p mod 2 = 0) end proc);
newCM[Entries][Add]("Divide by 2", "%EXPR/2", algebraic, 'test'="Divisible by 2");
Install(newCM);
Revert to the Maple default context menu system.
Install();
Add several additional entries to the default context menu system.
newCM := CurrentContext[Copy]():
See Also
About Creating Context-Sensitive Menus, ContextMenu, ContextMenu[CurrentContext], ContextMenu[CurrentContext][Copy], ContextMenu[New]
Download Help Document