QTableView change cell font
Solved
General and Desktop
-
Hi!
How to change QTableView's cells' font? I want to set Times New Roman. -
You can change the cell font with:
tableViewObj->setFont(QFont("Times",20)); -
What about changing only 1 property of the font? Then you need
getFont()
which does not exist :-( -
@DrumM8
Hi
in Qt the get methods do not start with get.
so its simply
font()