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][Copy] - create a copy of this context menu module
Calling Sequence
Copy()
Description
The Copy command creates and returns a copy of the context menu module of which it is a member.
The object returned by Copy is an entirely new module, but it generates the same context menus as the original. Copying a context menu module is useful when you want to add entries to a context menu without modifying the existing module.
Examples of CurrentContext[Copy]
with(ContextMenu):
copiedCM := CurrentContext[Copy]():
You can now freely customize the menu. Note, however, that added entries will not be visible in the Maple context-sensitive menus until you execute the Install(copiedCM) command.
copiedCM:-Entries:-Add("Divide by 3", "%EXPR / 3", integer);
Install(copiedCM);
Test:-GetGeneratedMenu(6);
See Also
ContextMenu, ContextMenu[CurrentContext], ContextMenu[New]
Download Help Document