import QtQuick 2.0

Text {
    width: 200
    wrapMode: Text.WordWrap
    elide: Text.ElideRight
    maximumLineCount: 3
    text: "the quick brown fox jumped over the lazy dog the quick brown fox jumped over the lazy dog the quick brown fox jumped over the lazy dog"
}

