I have a QTableWidget but need to remove horizontal header and vertical header data
-
wrote on 1 May 2024, 22:05 last edited by
I have a QTableWidget but need to remove horizontal header and vertical header data, how?
-
wrote on 1 May 2024, 22:14 last edited by
To hide the row and column header row entirely:
tableWidget->horizontalHeader()->setVisible(false); tableWidget->verticalHeader()->setVisible(false);
-
1/2