[Table of Contents] [docx version]

SpreadsheetML Reference Material - Table of Contents

cellSmartTags (Cell Smart Tags)

The element is used to label the cell with a smart tag. A cell may be determined to have semantic meaning and the cell containing this data can be labeled with a smart tag. The type of actions you can take depend on the semantic meaning of the data and the actions that the application decides to associate with that type of smart tag.

[Example: If you recently sent mail to "Chad Rothschiller", and you type the name into a cell on the worksheet, the name is recognized and given a smart tag with actions you can take including Send Mail, Schedule a Meeting, Open Contact, or Add to Contacts.

end example]

An application may decide that the smart tag indicators appear in the cell in the worksheet.

This collection represents a collection of smart tags on a cell.

[Example: This example expresses a smart tag associated with cell A1. The @type is used to associate this smart tag with a workbook-level smart tag type defined in the workbook start part.

<cellSmartTags r="A1">
<cellSmartTag type="0"/>
</cellSmartTags>

end example]

Parent Elements

smartTags3.3.1.87)

 

Child Elements

Subclause

cellSmartTag (Cell Smart Tag)

§3.3.1.4

 

Attributes

Description

r (Reference)

Reference to the cell that contains this set of smart tags.

 

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

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

<complexType name="CT_CellSmartTags">

   <sequence>

   <element name="cellSmartTag" type="CT_CellSmartTag" minOccurs="1" maxOccurs="unbounded"/>

   </sequence>

   <attribute name="r" type="ST_CellRef" use="required"/>

</complexType>