Section 要素
最終更新日: 2015年3月9日
適用対象: SharePoint Foundation 2010
この記事の内容
属性
子要素
親要素
出現回数
レイアウトのセクションを定義します。
<Section
Type="Divider | OneRow | TwoRow | ThreeRow"
Alignment="Top | Middle"
/>
属性
属性 |
説明 |
---|---|
Type |
オプション。セクションの種類を指定する列挙値。
|
Alignment |
オプション。セクション内のコントロールの垂直方向の配置を指定する列挙値。
既定の配置は、Top です。 |
子要素
親要素
出現回数
最小: 0 最大: 制約なし |
例
次の例では、異なる種類の 2 つのセクションを持つレイアウトが定義されます。
<Layout Title="Large">
<Section Type="OneRow">
<Row>
<ControlRef TemplateAlias="createView" DisplayMode="Large" />
</Row>
</Section>
<Section Type="ThreeRow">
<Row>
<ControlRef TemplateAlias="viewSelector" DisplayMode="Medium" />
</Row>
<Row>
<ControlRef TemplateAlias="modifyView" DisplayMode="Medium" />
</Row>
<Row>
<Strip>
<ControlRef TemplateAlias="previousPage" DisplayMode="Small" />
<ControlRef TemplateAlias="currentPage" DisplayMode="Medium" />
<ControlRef TemplateAlias="nextPage" DisplayMode="Small" />
</Strip>
</Row>
</Section>
</Layout>