[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

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: Consider a smart tag which has supplementary information defined as using the following WordprocessingML:

<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. end example]

Parent Elements

settings2.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.

 

[Example: Consider a smart tag which has a name of companyName. This name would be referenced using the following WordprocessingML:

 

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

 

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

 

The possible values for this attribute are defined by the ST_String simple type2.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).

 

[Example: Consider a smart tag which shall have a namespace URI of urn:smartTagExample. This namespace would be referenced using the following WordprocessingML:

 

<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. end example]

 

The possible values for this attribute are defined by the ST_String simple type2.18.89).

url (Smart Tag Supplementary URL)

Specifies a URL provided for a particular smart tag type in this document. [Note: 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. end note]

 

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

 

[Example: Consider a smart tag which shall have a supplementary URL of http://www.contoso.com/smartTag. This URL would be specified using the following WordprocessingML:

 

<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. end example]

 

The possible values for this attribute are defined by the ST_String simple type2.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>