Used to edit and display plain text.
This class is a JS wrapper around Qt's QPlainTextEdit class
A QPlainTextEdit provides ability to add and manipulate native editable text field widgets.
QPlainTextEdit inherits from NodeWidget
const { QPlainTextEdit } = require("@nodegui/nodegui");
const plainTextEdit = new QPlainTextEdit();parentNodeWidget (optional). Any widget inheriting from NodeWidget can be passed as a parent. This will make this widget, the child of the parent widget.
QPlainTextEdit can access all the static methods defined in NodeWidget
QPlainTextEdit can access all the instance properties defined in NodeWidget.
QPlainTextEdit can access all the instance methods defined in NodeWidget.
Sets the given text to the plainTextEdit.
textstring
Returns the text of the text edit as plain text.
Deletes all the text in the text edit.