Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetextedit / usingMultilineEdit.qml
1 import QtQuick 1.0
2
3 Rectangle{
4     width: 280
5     height: 140
6     Column {
7         MultilineEdit {
8             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.';
9             width: 182; height: 60;
10         }
11         Rectangle {height: 20; width: 20;}//Spacer
12         MultilineEdit {text: 'Hello world'}
13     }
14 }