cellFormatを使用してセル・コンテンツに対する追加の書式設定を指定するには、次のようにします。
「cellFormat」ノードが、展開された「rowLayout」ノードに挿入され、強調表示されます。
子コンポーネントが、展開された「cellFormat」ノードに挿入され、強調表示されます。
注意: データ・バインディングの使用は、「コンポーネント属性のデータ・バインディング」を参照してください。
...
<pageLayout>
<!-- Insert cellFormat around child components -->
<contents>
<header text="Example">
<contents>
<rowLayout hAlign=right">
<contents>
First Column
<cellFormat vAlign="bottom">
<contents>
Second Column
</contents>
</cellFormat>
<flowLayout>
<contents>
Third Column
<spacer height="100" width="1"/>
</contents>
</flowLayout>
</contents>
</rowLayout>
<rowLayout>
<contents>
<header text="Second Row"/>
<cellFormat columnSpan="2">
<contents>
<header text="Column Span Two"/>
</contents>
</cellFormat>
</contents>
</rowLayout>
<rowLayout>
<contents>
<cellFormat columnSpan="2" hAlign="right">
<contents>
<text text="Right Aligned Text and Column Span Two"/>
</contents>
</cellFormat>
<text text="Third Column">
</contents>
</rowLayout>
</contents>
</header>
</contents>
<!-- REST OF PAGE LAYOUT -->
</pageLayout>
...
tableLayoutについて
rowLayoutについて
cellFormatについて
rowLayoutを使用した行の作成
tableLayoutとRowLayoutを使用した表の挿入
rowLayoutへの子コンポーネントの挿入
レイアウト・コンポーネントの使用
Copyright © 1997, 2004, Oracle. All rights reserved.