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
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