Reputation: 15504
How to make strikethrough text in Adobe Flex 4?
I mean using native flex framework features: styles, libraries, classes.
I use RichText
component.
Please, do not answer:
Upvotes: 1
Views: 776
Reputation: 101
<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>
Upvotes: 0
Reputation: 9134
lineThrough, as in: http://help.adobe.com/en_US/flex/using/WS4C9DCBEF-6671-47e9-BBC1-F2676529A30A.html
Upvotes: 1