<smartTagType> (Supplementary Smart Tag Information)

This element specifies optional supplementary information about one or more smart tags (§2.5.1.9) used in the current WordprocessingML document. This supplementary data is linked to the smart tag to which it applies via its @name and @namespaceuri attributes.

example:
<w:smartTagType w:name="companyName" w:namespaceuri="urn:smartTagExample" w:url="http://www.contoso.com/smartTag" >

The @name and @namespaceuri attributes specify that the smart tag to which this data shall be companyName in the urn:smartTagExample namespace. The supplementary data is an associated URL of http://www.contoso.com/smartTag. ]

Parent Elements

<settings>2.15.1.78)

Attributes

Description

<name> (Smart Tag Name)

Specifies the name of the smart tag within the document for which supplementary data is provided.

<w:smartTagType w:name="companyName"  >

The @name attribute specifies that the name for this smart tag shall be companyName. ]

The possible values for this attribute are defined by the ST_String simple type (§2.18.89).

<namespaceuri> (Smart Tag Namespace)

Specifies the namespace URI of the smart tag for which supplementary data is provided.

If this attribute is omitted, the URI shall be assumed to be null (no associated URI).

<w:smartTagType w:namespaceuri="urn:smartTagExample" />

The @namespaceuri attribute specifies that the namespace for the smart tag to which this data applies shall be urn:smartTagExample. ]

The possible values for this attribute are defined by the ST_String simple type (§2.18.89).

<url> (Smart Tag Supplementary URL)

Specifies a URL provided for a particular smart tag type in this document. [: This URL is typically used to provide access to a URL for additional updates to this smart tag type as requested by the smart tag provider. ]

If this attribute is omitted, then no supplementary URL is provided for this type.

<w:smartTagType  w:url="http://www.contoso.com/smartTag" />

The @url attribute specifies that the supplementary data for the smart tag to which this data applies shall be http://www.contoso.com/smartTag. ]

The possible values for this attribute are defined by the ST_String simple type (§2.18.89).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_SmartTagType">
	<attribute name="namespaceuri" type="ST_String"/>
	<attribute name="name" type="ST_String"/>
	<attribute name="url" type="ST_String"/>
</complexType>