Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
DocumentTools[AddPalette] - カスタムスニペットパレットをパレットペインに追加
使い方
AddPalette(palette_name, location=loc, position=pos, store=st)
パラメータ
palette_name
-
string ; カスタムスニペットパレットの名前
loc
(オプション) "left" または "right" ; 新規パレットを追加するペインの位置 (デフォルト : "left")
pos
(オプション) "top" または "bottom" ; 新規パレットを配置するペイン内の位置 (デフォルト : "top")
st
(オプション) truefalse ; 後続の Maple セッションでパレットをリロードするかどうか (デフォルト : false)
説明
AddPalette 関数は、カスタムスニペットパレットを左側 (デフォルト) または右側のパレットペインに追加します。パレットは、指定したペインの最上部 (デフォルト) または最下部に配置することができます。
store オプションに store=true (または単に store) を指定すると、パレットは後の Maple セッションでも使用可能なパレットセットに追加されます。デフォルトでは、スニペットパレットは Maple セッションの終了時に削除され、後続のセッションでは表示されません。
スニペットパレットは、組み込みパレットと同じように [表示] > [パレット] メニューの [パレットのアレンジ] ダイアログを使用して操作できます。
スニペットパレットにエントリを追加するには、DocumentTools[AddPaletteEntry] コマンドを使用します。
スニペットパレットを削除するには、DocumentTools[RemovePalette] コマンドを使用します。
互換性
DocumentTools[AddPalette] コマンドは Maple 16 で導入されました。
Maple 16 における変更点についての詳細は、Maple 16 の新機能 を参照してください。
例
with(DocumentTools):
AddPalette( "My first palette" );
AddPalette( "My second palette", location = "right", position = "top", store );
RemovePalette( "My first palette" );
関連項目
パレットのアレンジ、DocumentTools、DocumentTools[AddPaletteEntry]、DocumentTools[RemovePalette]、worksheet/expressions/createpalette
Download Help Document