<?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"
        viewSourceURL="srcview/index.html">
    <layout>
        <BasicLayout />
    </layout>

    <Form>
        <FormItem label="lineThrough:">
            <FxCheckBox id="fxCheckBox"
                    selected="true" />
        </FormItem>
    </Form>

    <TextGraphic id="textGraphic"
            fontSize="24"
            lineThrough="{fxCheckBox.selected}"
            horizontalCenter="0"
            verticalCenter="0">
        <text>
            <![CDATA[The quick brown fox jumped over the lazy dog.]]>
        </text>
    </TextGraphic>

</FxApplication>