aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/text_underline_multisize.qml
blob: 4ee54487d87150d9cc2c8f59bafb2b1e55c70bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Item {
    width: 320
    height: 480

    Text {
        anchors.centerIn: parent
        font.family: "Arial"
        font.pixelSize: 10
        font.underline: true
        textFormat: Text.RichText
        text: "Lorem ipsum <font size=14>dolor sit amet</font>, consectetur."
    }
}