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][Queries][List] - list queries defined for context menu module
Calling Sequence
Queries[List]()
Description
The Queries[List] command lists the names of the queries that are available within this context menu module.
Each string in the list returned by Queries[List] is the name of a query defined for this context menu module with Queries[Add].
The associated procedure with a name in the returned list may be viewed using the Get command, or run with the Run command.
Examples of Queries[List]
newCM := ContextMenu:-New():
newCM:-Queries:-Add("set of size 3", proc(e) type(e, 'set') and evalb(nops(e)=3) end proc): newCM:-Queries:-Add("variables", proc(e) indets(e, 'name') end proc): newCM:-Queries:-Add("is_parseable", proc(e) try parse(e); true catch: false; end try; end proc):
List the names of the queries available in this context menu module.
newCM:-Queries[List]();
See Also
ContextMenu, ContextMenu[CurrentContext][Queries], Queries/Add, Queries/Get, Queries/Run
Download Help Document