blob: b5af13cc4cd723535cab4f26ff392c471fd54cb6 [file] [log] [blame]
import QtQuick 2.0
TextInput {
id: textinput
property variant regexvalue
height: 50
width: 200
text: "abc"
validator: RegExpValidator {
id: regexpvalidator
regExp: regexvalue
}
}