Row 要素
最終更新日: 2015年3月9日
適用対象: SharePoint Foundation 2010
この記事の内容
子要素
親要素
出現回数
レイアウトのセクション内の行を定義します。
<Row />
子要素
親要素
出現回数
最小: 0 最大: 3 |
例
次の例は、既定の Server リボン定義のフラグメントです。
<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>