Contains the data referenced by a DDE link.
| Namespace | urn:schemas-microsoft-com:office:excel | 
| Schema name | XML Spreadsheet 2000 | 
| Element | Description | 
|---|---|
| RowLast | Specifies the index of the last row of data being represented. | 
| ColLast | Specifies the index of the last column of a row of data being represented. | 
| Number | Contains the index number of either an HTML table in a Web page or of a pane in a worksheet window, the number formatting style of a chart object, or a numeric operand. | 
| Text | Contains a string operand or the name of an HTML table in a Web page. | 
| Boolean | Contains a Boolean operand. | 
| Error | Contains an error string. | 
None.
      
<xsd:complexType name="MoperType" >
  <xsd:sequence>
    <xsd:element name="RowLast" type="xsd:integer">
    </xsd:element>
    <xsd:element name="ColLast" type="xsd:int">
    </xsd:element>
    <xsd:element name="Number" type="xsd:integer">
    </xsd:element>
    <xsd:element name="Text" type="xsd:string">
    </xsd:element>
    <xsd:element name="Boolean" default="False" minOccurs="0">
      <xsd:simpleType>
        <xsd:restriction base="TrueFalseType" />
      </xsd:simpleType>
    </xsd:element>
    <xsd:element name="Error" type="ErrorType" minOccurs="0">
    </xsd:element>
  </xsd:sequence>
</xsd:complexType>