
     text
        A text object displays any number of lines of text  in  a
        multi-line scrollable region.

        text={ action=... name=.... value=... editType=... }

        The value is the text to  be  displayed  on  the  screen.
        Newlines  in the value will cause the text to start a new
        line.  The name is relevant for tailoring the  appearance
        of  this  text  object  using resources  or assigning new
        values to the message. If a new value is assigned to  the
        text  the  text  will  change  to  reflect the new value.
        action: The text object can have an  action.  The  action
        occurs  when the cursor leaves the text object.  editType
        is used to select whether editing of the text is allowed.
        Choices are read (read-only), append (can add to text but
        not modify existing text), edit (read-write).

        Assigning a new value to a text object  will  change  the
        text that is displayed.

        examples:
        text={ value="I am a multiline \n  text  object  \n  with
        three lines" }
        text={ value=`cat README` }

