<ST_CellType>
(Cell Type)
Indicates the cell's data type.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Cell containing a boolean. |
|
Cell containing an error. |
|
Cell containing an (inline) rich string, i.e., one not in the shared string table. If this cell type is used, then the cell value is in the |
|
Cell containing a number. |
|
Cell containing a shared string. |
|
Cell containing a formula string. |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_CellType">
<restriction base="xsd:string">
<enumeration value="b"/>
<enumeration value="n"/>
<enumeration value="e"/>
<enumeration value="s"/>
<enumeration value="str"/>
<enumeration value="inlineStr"/>
</restriction>
</simpleType>