aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/textedit_multiparagraph_selected.qml
blob: 5bd327453ef5a87adaaed633375552d56d0f84ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0

Item {
    width: 320
    height: 480

    TextEdit {
        id: textEdit
        anchors.centerIn: parent
        font.family: "Arial"
        font.pixelSize: 20
        textFormat: Text.RichText
        text: "<p>First line</p><p>Second line</p><p>Third line</p><p>Fourth line</p>"

        Component.onCompleted: {
            textEdit.select(18, 26)
        }
    }

}