How to align text in QTextEdit
Solved
General and Desktop
-
Hi,
I want to align text present in QTextEdit.
I tried some options present in net like " text-align:center" but they didn't work.Could you please help me on this...
Regards,
Anuj -
-
Chris Kawa Lifetime Qt Championwrote on 4 Feb 2018, 12:37 last edited by Chris Kawa 2 Apr 2018, 12:39
You can use setAlignment() method. Here's an example:
QTextEdit te; te.append("This paragraph is left aligned"); te.setAlignment(Qt::AlignLeft); te.append("This paragraph is right aligned"); te.setAlignment(Qt::AlignRight);
or you can use html:
QTextEdit te; te.setHtml("<p align=\"left\">This paragraph is left aligned" "<p align=\"right\">This paragraph is right aligned");
or CSS:
QTextEdit te; te.setHtml("<p style=\"text-align: left\">This paragraph is left aligned" "<p style=\"text-align: right\">This paragraph is right aligned");
-
@Chris-Kawa Thanks..it's working
-
@mrjj Thanks for providing solution....
2/5