<xsl:if> Element

MSXML 5.0 SDK

Microsoft XML Core Services (MSXML) 5.0 for Microsoft Office - XSLT Reference

<xsl:if> Element

Allows simple conditional template fragments.

<xsl:if
  test = boolean-Expression>
</xsl:if>

Attributes

test
Required. The condition in the source data to test. If the expression in this attribute evaluates to True when cast to a Boolean, the content of <xsl:if> is instantiated and placed in the output. Node-sets are cast to a Boolean True if they contain at least one node.

Element Information

Remarks

The content is a template. The expression is evaluated, and the resulting object is converted to a Boolean. If the result is True, the content template is instantiated; otherwise, nothing is created.

Examples

See Also

Defining Conditional Templates Using <xsl:if> and <xsl:choose> | XPath Syntax