如何在 Adobe Flex 4 中制作删除线文本?我的意思是使用原生 flex 框架特性:样式、库、类。我使用RichText
组件。
请不要回答:
- 画线
- 加下划线并更改基线
如何在 Adobe Flex 4 中制作删除线文本?我的意思是使用原生 flex 框架特性:样式、库、类。我使用RichText
组件。
请不要回答:
Adobe Text Layout Framework can do so.
<Graphic xmlns="http://ns.adobe.com/fxg/2008" version="2">
<RichText>
<content>This text is <span fontWeight="bold">BOLD</span>,<br/>
this text is <span textDecoration="underline">UNDERLINED</span>,<br/>
and this text is <span fontStyle="italic">ITALIC</span>.
<p>This is a new paragraph.</p></content>
</RichText>
</Graphic>