Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For the textArea and textView components, text is specified by nested text within the textArea or textView tag, for instance:<textView>The textView's text</textView> In either case, special care is required when the text contains rich text tags. < and > in an attribute must be escaped, for example: <button richText="true" text="press &lt;b&gt;me&lt;/b&gt;"/>would appear as

 Image Removed

Note >.  Note that the attribute richText is set to true.  For textView this attribute is on by default.  For all other text labels it should be specified.  For example, to put rich text in a textView:

<textView>
    &lt;p&gt;Paragraph 1&lt;/p&gt;&lt;p&gt;Paragraph 2&lt;/p&gt;
</textView>

...