<values> (DDE Name Values)

This element defines a collection of values associated with DDE item.

Parent Elements

<ddeItem>3.14.2)

Child Elements

Subclause

<value> (Value)

§3.14.18

Attributes

Description

<cols> (Columns)

The number of columns of data that will be returned by the DDE server for this DDE item. The default value of this attribute is 1.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<rows> (Rows)

The number of rows of data that will be returned by the DDE server for this DDE item. The default value of this attribute is 1.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

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

<complexType name="CT_DdeValues">
	<sequence>
	<element name="value" minOccurs="1" maxOccurs="unbounded" type="CT_DdeValue"/>
	</sequence>
	<attribute name="rows" type="xsd:unsignedInt" use="optional" default="1"/>
	<attribute name="cols" type="xsd:unsignedInt" use="optional" default="1"/>
</complexType>