summaryrefslogtreecommitdiff
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml
blob: 4cf7e97d864f44002ffa7c9c2b896dfe191ed921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 1.0

Rectangle{
    width: 600
    height: 200
    Column{
        MultilineEdit{
            text: 'I am the very model of a modern major general. I\'ve information vegetable, animal and mineral. I know the kings of england and I quote the fights historical - from Marathon to Waterloo in order categorical.';
            width: 182; height: 60;
        }
        MultilineEdit{text: 'Hello world'}
    }
}