How can I remove the column with index numbers in QTableWidget ?
QTableWidget
Not quite obvious, there are two views the vertical and the horizontal header, they are defined in QTableView, as any widget you can hide them so its
QTableView
myTableWidget->verticalHeader()->setVisible(false);
2.1m questions
2.1m answers
60 comments
57.0k users