Row Element
Applies to: SharePoint Foundation 2010
Defines a row in a section of a layout.
<Row />
Child Elements
Parent Elements
Occurrences
Minimum: 0 Maximum: 3 |
Example
The following example is a fragment from the default Server ribbon definition.
<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>