Row Element

Applies to: SharePoint Foundation 2010

Defines a row in a section of a layout.

<Row />

Child Elements

ControlRef

Strip

OverflowArea

Parent Elements

Section

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>