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
Maplets[Elements][TableRow] - テーブル内の行の指定
使い方
TableRow(element_content)
パラメータ
element_content - TableItem 要素
説明
TableRow 要素は、maplet の表内で行を指定します。行内の各欄の内容は、TableItem 要素を用いて定義します。
TableRow 要素は、TableItem 要素を含むことが可能です。
注意: 各 TableRow は、同じ数の TableItem 要素を持つ必要があります。(指定されている場合) TableHeader 内の TableItem 要素の数は、各 TableItem 内の TableItem 要素の数と等しくなくてはなりません。
TableRow 要素は、Table 要素に含めることが可能です。
例
with(Maplets[Elements]): maplet := Maplet([ BoxCell( Table( TableHeader( TableItem(A), TableItem(B) ), TableRow( TableItem('caption'=1), TableItem('caption'=2) ), TableRow( TableItem('caption'=3), TableItem('caption'=4) ) ), 'as_needed'), Button("OK", Shutdown()) ]): Maplets[Display](maplet);
上の maplet の例は、次のように書き換えることが可能です:
with(Maplets[Elements]): maplet := Maplet([ BoxCell(Table([A, B], [[1, 2], [3, 4]]), 'as_needed'), Button("OK", Shutdown()) ]): Maplets[Display](maplet);
参照
Maplets パッケージの概要, Maplets[Display], Maplets[Elements] パッケージの紹介, Maplets[Elements][BoxCell], Maplets[Elements][Button], Maplets[Elements][Shutdown], Maplets[Elements][Table], Maplets[Elements][TableHeader], Maplets[Elements][TableItem], Maplets/他の要素
Download Help Document