Switch element (View)

Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

Allows for conditional rendering based on the value of a Collaborative Application Markup Language (CAML) expression.

<Switch
  StripWS = "TRUE" | "FALSE">
  <Expr></Expr>
  <Case Value="Value_1"></Case>
  <Case Value="Value_2"></Case>
  ...
  <Default></Default>
</Switch>

Elements and attributes

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute Description
StripWS
Optional Boolean. TRUE to remove white space from the beginning and end of the value returned by the element.

Child elements

Parent elements

Numerous

Occurrences

  • Minimum: 0
  • Maximum: Unbounded

Remarks

A Switch element contains an Expr element, any number of Case elements, and a Default element. The value of the Expr element is compared against the Value attribute of each Case element.

When a match is found, the Switch element returns the value of the matching Case element. If no match is found, and if a Default element is given, the Switch element returns the value of the Default element. If no Default element is specified and none of the Case values match the Expr value, the Switch element returns an empty string.

This element does not require any particular parent element.

Example

The following example returns "User Zero" if the UserID value equals 0 (zero); otherwise, the example returns "Not User Zero."

<Switch>
  <Expr><UserID/></Expr>
  <Case Value="0">User Zero</Case>
  <Default>Not User Zero</Default>
</Switch>

See also