djBorderPane - Dojo ボーダーペイン

ボーダーコンテナに含まれる 1 つのペインのコンテンツを指定します。

カテゴリ

拡張ライブラリ

構文

<xe:djBorderPane attributes>content</xe:djBorderPane>
表 1. 必須プロパティ
プロパティ 説明
id デフォルトは djBorderPane1djBorderPane2 などです。
region topbottomleadingtrailingleftrightcenter のいずれかとして指定します。

使用法

これは Dojo コントロールです。

BorderContainer コントロールには BorderPane コントロールが含まれます。各ペインには、コンテナ内で指定した領域が対象として含まれます。

このコントロールは、最新のアクセシビリティ標準に対してテストされていません。推奨されるアクセシビリティパスは パネルコントロールです。

以下の例は、境界線コンテナコントロールに含まれる 5 つの境界線ペインコントロールを示しています。
<xe:djBorderContainer id="djBorderContainer1" style="width:400px; height:200px;">
	<xe:djBorderPane id="djBorderPane1" region="top">top</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane2" region="center">center</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane3" region="bottom">bottom</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane4" region="left">left</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane5" region="right">right</xe:djBorderPane>
</xe:djBorderContainer>