ContextMenu[CurrentContext]
Copy
create a copy of this context menu module
Calling Sequence
Description
Examples of CurrentContext[Copy]
Copy()
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.
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);
432
Install(copiedCM);
Test:-GetGeneratedMenu(6);
Apply a Command,Assign to a Name,Divisors,Integer Factors,Plots,Plot Builder,Prime Factors,Sum of Squares,Totient Function,|,Integer Functions,Integer Base 10 Log,Integer Base 2 Log,Integer Natural Log,Queries,Is Mersenne Number?,Is Perfect Square?,Is Prime Number?,Is Square Free?,Units,Affix Unit,Atomic,bohr,electron,electron mass,electron per second,electron*bohr,electron*bohr^2/volt,electron/bohr^2,electron^2/hartree,electron_mass*bohr/second^2,hartree,hartree per second,hartree/bohr,hartree/tesla,hartree/tesla*bohr^3,hartree/tesla^2,permittivity,planck,second,tesla,volt,volt*second,volt*second^2/electron,volt/bohr,CGS,barye,centimeter,dyne,erg,erg/second,g,gram,kyne,radian,second,steradian,EMU,abampere,abcoulomb,abfarad,abhenry,abohm,absiemens,abtesla,abvolt,abweber,barye,centimeter,dyne,erg,erg/second,g,gram,joule,kilogram,kyne,meter,newton,pascal,radian,second,steradian,watt,FPS,foot,horsepower,pound,poundal,poundal*foot,poundforce/inch^2,radian,second,steradian,MTS,kilojoule,kilowatt,meter,pieze,radian,second,steradian,sthene,tonne,SI,coulomb,farad,henry,joule,kilogram,lumen,lux,meter,newton,ohm,pascal,radian,second,siemens,steradian,tesla,volt,watt,weber,|,Combinations/Permutations,Combinations,Count,Generate,Fibonacci,Partitions,Count,Generate,Random,Permutations,Count,Generate,Random,Power Set,Number Theory Functions,Calkin-Wilf Sequence,Carmichael Function,I-th Prime,Imaginary Unit,Inverse Totient Function,Moebius Function,Next Prime,Next Safe Prime,Number of Positive Divisors,Number of Prime Factors,Number of Primes,Previous Prime,Primitive Root,Pseudo Primitive Root,Sum of Divisors,Signal Processing,Signal Generation,Generate Signal Using Sample Rate,Generate Signal Using Time Range,Visualizations,Generate Periodogram Using Sample Rate,Generate Periodogram Using Time Range,Generate Signal Plot Using Sample Rate,Generate Signal Plot Using Time Range,|,Divide by 3
See Also
ContextMenu
ContextMenu[New]
Download Help Document