get text from QTextEdit
Unsolved
General and Desktop
-
-
@JacobNovitsky Just check documentation: https://doc.qt.io/qt-6/qtextedit.html#plainText-prop
-
@jsulm I assume this is the one I'm looking for, can you share syntax pls
QString QTextEdit::toPlainText() const -
@JacobNovitsky What syntax? toPlainText() is a methof of QTextEdit class which you can call like any other method.
QString text = ui->textEdit->toPlainText();
2/4