TextDocument Object

TextDocument — Can hold any type of text document.

Introduction

TextDocument can hold any type of text document. From plain text to HTML, XSLT, WML or XML and more. It can be processed run-time by using the TEXT logic command.

Properties

Table 25. TextDocument Object Properties

NameDetailsPossible ValuesDefault Value
TextContentsText document. (within CDATA tags)*-
DescriptionDescription to be used in lists.*-
DetailDescriptionDetailed description.*-
ModifiedModification date-time stamp in ISO 8601 format.ccyy-mm-ddThh:mm:ssdate stamp

Example

<Object Application="MyOrder" Type="TextDocument" Name="OrderFormStyleSheet">
  <TextDocument>
    <TextContents>
      < ![CDATA[
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
          . . .
          . . .
          . . .
        </xsl:stylesheet>
      ]] >
    </TextContents>
    <Description>mark-up orderform</Description>
    <DetailDescription>Stylesheet for orderform</DetailDescription>
    <Modified>2007-11-12T09:58:00</Modified>
  </TextDocument>
</Object>