content : content

DESCRIPTION

<content> simply specifies text content which it returns to its parent modules, and ultimately to <txt>. It is the equivalent of text within the body of a module. It is useful when using <random>.


PARAMETERS

string - text which is returned


EXAMPLES

...     
     <txt>                         
          <content string="Hello World!" />
     </txt>
...



is equivalent to

...     
     <txt>                         
          Hello World!
     </txt>
...