Is it possible use different underline styles with a TextArea? Currently I am able to:
QTextCharFormat fmt;
fmt.setUnderlineStyle(QTextCharFormat::SingleUnderline);
But
QTextCharFormat fmt;
fmt.setUnderlineStyle(QTextCharFormat::SpellCheckUnderline);
has no effect. I am attempting to implement spell checking.
Thank You.
↧