import QtQuick 2.0 Item { width: 320 height: 480 TextEdit { id: textEdit anchors.centerIn: parent verticalAlignment: Text.AlignBottom font.family: "Arial" font.pixelSize: 16 textFormat: Text.RichText Component.onCompleted: textEdit.selectAll() text: "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "
\n" + "Cell 1\n" + "
\n" + "Cell 2\n" + "
\n" + "Cell 3\n" + "
\n" + "\n" + "\n" } }