Advanced Customization > Info*Engine User’s Guide > Info*Engine Custom Tag Reference > Info*Engine Tags > Supplied Library Tags (XSL) > param
  
param
Specifies a value for an XSL parameter to be supplied for the transformation. This tag is embedded within a transform tag and is optional. Provides XSL transformation tag support.
Syntax
<xsl:param name="PARAM_NAME" data="PARAM_DATA"/>
Attribute Descriptions
Required attributes: name and data.
name
The XSL parameter name. This attribute is required and is also an expression.
data
The XSL parameter value. This attribute is required and is also an expression.
Example
<xsl:transform group="${toTransform}"
xsl="/transform/to/xcel.xsl"
fileName="my.xls"
contentType="application/vnd.ms-excel">
<xsl:param name="a" data="b" />
</xsl:transform>