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][GridRow] - グリッドレイアウト内の行の指定
使い方
GridRow(opts, element_content)
パラメータ
opts - option=value の形の等式; ここで option は halign または valign のいずれか; GridRow 要素のためのオプション指定
elememt_content - 任意の数の GridCell 要素
説明
GridRow レイアウト要素は、maplet のグリッドレイアウト内にある行を指定します。
GridRow 要素の特徴は、オプションを用いて修正が可能です。
GridRow 要素は、GridCell 要素を含むことが可能です。
GridRow 要素は、GridLayout 要素の中にのみ、含めることが可能です。
次の表に、GridRow 要素のオプションの、制御および使用法について記述します。
I 列の x は、(要素の定義を行う) 呼び出し手順で指定される、初期化が可能なオプションを示す。
R 列の x は、呼び出し手順で必要となるオプションを示す。
G 列の x は、オプションが Get ツールを用いて取得できる、すなわち読み込み可能であることを示す。
S 列の x は、 SetOption 要素あるいは Set ツールを用いて設定される、書き出し可能なオプションを示す。
Option I R G S halign x valign x
opts 引数は、maplet のオプションを設定する、1 つまたは複数の以下の等式を含みます。
halign = left, center, または right
行内の各 GridCell の内容のデフォルトの水平方向の配置。
valign = top, center, または bottom
行内の各 GridCell の内容のデフォルトの垂直方向の配置。
例
with(Maplets[Elements]): maplet := Maplet(GridLayout( GridRow( GridCell("Spacing:" ), GridCell("------------") ), GridRow( GridCell("Right alignment:" ), GridCell("Sample"), halign=right ), GridRow( GridCell("Center alignment:"), GridCell("Sample"), halign=center ), GridRow( GridCell("Left alignment:"), GridCell("Sample"), halign=left ), GridRow( GridCell(Button("Quit", Shutdown())) ) )): Maplets[Display](maplet);
参照
Maplets, Maplets[Display], Maplets[Elements], Maplets[Elements][BoxLayout], Maplets[Elements][Button], Maplets[Elements][GridCell], Maplets[Elements][GridLayout], Maplets[Elements][Maplet], Maplets[Elements][SetOption], Maplets[Elements][Shutdown], Maplets/LayoutElements, Maplets[Tools][Get], Maplets[Tools][Set]
Download Help Document