<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/10/20/setting-the-typographic-case-on-an-fxtextarea-control-in-flex-gumbo/ -->
<Application name="FxTextArea_typographicCase_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <Style>
        FxTextArea {
            typographicCase: "uppercase";
        }
    </Style>

    <Declarations>
        <String id="lorem" source="data/lorem.html" />
    </Declarations>

    <FxTextArea id="fxTextArea"
            content="{lorem}"
            widthInChars="80"
            marginTop="20" />

</Application>