[Table of Contents] [docx version]
SpreadsheetML Reference Material - Table of Contents
ST_DdeValueType (DDE Value Types)
This simple type indicates the type of the DDE value.
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 |
b (Boolean) |
Indicates that the value is a boolean. |
e (Error) |
Indicates that the value is an error. |
n (Real Number) |
Indicates that the value is a real number. |
nil (Nil) |
Indicates that the value is nil. |
str (String) |
Indicates that the value is a string. |
Referenced By |
value@t (§3.14.18) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_DdeValueType">
<restriction base="xsd:string">
<enumeration value="nil"/>
<enumeration value="str"/>
</restriction>
</simpleType>