このトピックでは、表にない行を作成するステップについて説明します。行を表に挿入する場合は、「tableLayoutとrowLayoutを使用した表と行の挿入」を参照してください。
rowLayoutを使用して行を挿入するには、次のようにします。
「rowLayout」ノードが、展開された親ノードに挿入され、強調表示されます。
ヒント: stackLayoutでrowLayoutコンポーネントを使用し、stackLayoutの名前付きの子separatorを使用して、各行の間に垂直間隔または点線を追加できます。
注意: データ・バインディングの使用は、「コンポーネント属性のデータ・バインディング」を参照してください。
...
<pageLayout>
<!-- Insert rowLayout outside a table -->
<contents>
<header text="Here are three rows">
<contents>
<rowLayout width="60%">
<contents>
First Row
Second Column
Third Column
</contents>
</rowLayout>
<rowLayout width="30%">
<contents>
Second Row
Second Column
Third Column
</contents>
</rowLayout>
<rowLayout width="10%">
<contents>
Third Row
Second Column
Third Column
</contents>
</rowLayout>
</contents>
</header>
</contents>
<!-- REST OF PAGE LAYOUT -->
</pageLayout>
...
tableLayoutについて
rowLayoutについて
cellFormatについて
flowLayoutまたはstackLayoutを使用したコンポーネントの水平または垂直の配置
rowLayoutへの子コンポーネントの挿入
rowLayoutの子コンポーネントの周囲でのcellFormatの使用
レイアウト・コンポーネントの使用
Copyright © 1997, 2004, Oracle. All rights reserved.