<完全なXSLT要素のリファレンス
定義と使用法
<xsl:attribute-set>要素は、属性の名前付きセットを作成します。 ザ・ 属性セットは、出力文書に全体として適用することができます。
Note:の子でなければなりません<xsl:stylesheet>または<xsl:transform> 。
構文
<xsl:attribute-set
name="name" use-attribute-sets="name-list">
<!-- Content:xsl:attribute* -->
</xsl:attribute-set>
属性
属性 | 値 | 説明 |
---|---|---|
name | name | 必須。 属性セットの名前を指定します。 |
use-attribute-sets | name-list | 任意。 属性セットで使用する他の属性セットのホワイトスペースで区切られたリスト |
例1
任意の出力要素に適用できる属性セットを作成します。
<xsl:attribute-set name="font">
<xsl:attribute name="fname">Arial</xsl:attribute>
<xsl:attribute name="size">14px</xsl:attribute>
<xsl:attribute name="color">red</xsl:attribute>
</xsl:attribute-set>
<完全なXSLT要素のリファレンス