適用対象: SharePoint 2016 |SharePoint Foundation 2013 |SharePoint Online |SharePoint Server 2013
レイアウトのセクション内の行を定義します。
<Row />
要素と属性
以下のセクションで、属性、子要素、親要素について説明します。
属性
なし
子要素
親要素
Occurrences
- 最小: 0
- 最大: 3
例
次の例は、既定のサーバー リボン定義のフラグメントです。
<GroupTemplate Id="Ribbon.Templates.ClipboardGroup">
<Layout Title="Large">
<Section Type="OneRow">
<Row>
<ControlRef TemplateAlias="paste" DisplayMode="Large" />
</Row>
</Section>
<Section Type="TwoRow">
<Row>
<ControlRef TemplateAlias="copy" DisplayMode="Medium" />
</Row>
<Row>
<ControlRef TemplateAlias="cut" DisplayMode="Medium" />
</Row>
</Section>
<Section Type="TwoRow">
<Row>
<ControlRef TemplateAlias="undo" DisplayMode="Medium" />
</Row>
<Row>
<ControlRef TemplateAlias="redo" DisplayMode="Medium" />
</Row>
</Section>
</Layout>
</GroupTemplate>