<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/10/24/creating-strikethrough-text-on-a-textgraphic-control-in-flex-gumbo/ -->
<FxApplication name="TextGraphic_lineThrough_test"
        xmlns="http://ns.adobe.com/mxml/2009">
    <layout>
        <BasicLayout />
    </layout>

    <Style>
        TextGraphic {
            fontSize: 24;
            lineThrough: true;
        }
    </Style>

    <TextGraphic id="textGraphic"
            horizontalCenter="0"
            verticalCenter="0">
        <text>
            <![CDATA[The quick brown fox jumped over the lazy dog.]]>
        </text>
    </TextGraphic>

</FxApplication>