你也许会在"Text"对象中用到一些简单的HTML标签。在默认情况下标签是禁用的,要开启它标签,需要在"Properties"窗口设置"HtmlTags"属性为true。以下列出的是支持的标签:
<b>...</b>
:加粗<i>...</i>
:斜体<u>...</u>
:下划线<strike>...</strike>
:删除线<sub>...</sub>
:脚注<sup>...</sup>
:上标<font color=...>...</font>
:字体颜色—可以是已命名的颜色(如DarkGray),也可以是#RGB格式的十六进制代码(如#FF8030)
以下示例将演示这些标签是如何被使用的:
text <b>bold text</b> <i>text in italic</i> <b><i>bold and in italic</b></i>
E = mc<sup>2</sup>
A<sub>1</sub> = B<sup>2</sup>
this is regular text, <font color=red>and this is a red one</font>
this is regular text, <font color=#FF8030>and this is an orange one</font>
此文本将会以如下方式进行显示:
相关链接:
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。