Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
How to color in textbrowser
-
hi...
How can I color text in LineEdit or TextBrowsersuppose i have
@
QString message="hello";
ui->textBrowser->append(message);
@
how can i color the message..
Thanks in advance
-
You can enclose the text in html span tags and add the color:
@
QString message = "<span style='color: red'>hello</span>"
@