<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 |
---|---|
|
Indicates that the value is a boolean. |
|
Indicates that the value is an error. |
|
Indicates that the value is a real number. |
|
Indicates that the value is nil. |
|
Indicates that the value is a string. |
Referenced By |
---|
|
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="b"/>
<enumeration value="n"/>
<enumeration value="e"/>
<enumeration value="str"/>
</restriction>
</simpleType>