tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 01:19:32 +0300
changeset 37 758a864f9613
parent 33 3e2da88830cd
permissions -rw-r--r--
Revision: 201037 Kit: 201039

import Qt 4.7

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'}
    }
}