Simply the cells which are naturally displayed when you create a QTableWidget without populating it with your own QTableWidgetItem's.
i.e.
int main(int argc,char* argv[])
{
table.show();
return QtApp.exec();
}
int main(int argc,char* argv[])
{
QApplication QtApp(argc,argv)
QTableWidget table(2,3);
table.show();
return QtApp.exec();
}
To copy to clipboard, switch view to plain text mode
This presents a 2x3 table of empty cells. The cells are selectable and editable, and are thus (as I call it) populated with default items. My question is: can these items be accessed?
Bookmarks