TOC PREV NEXT INDEX

Netscape and XSLT


xsl:element

The <xsl:element> element creates an element in the output document.

Syntax:
<xsl:element name=NAME namespace=URI use-attribute-sets=LIST-OF-NAMES >
	TEMPLATE
</xsl:template> 
Required Attributes:
name:
Specifies the desired name of the output element. The name must be a valid QName.
Optional Attributes:
namespace:
Specifies the namespace of the output element.
use-attribute-sets:
Lists named attribute sets to be used in the output element. Names should be separated by whitespace characters.
Type: Instruction, appears within a template.
Defined: XSLT, section 7.1.2.
NS support: Supported.

Comments? devdoc-feedback@netscape.com
TOC PREV NEXT INDEX