How to set the border for QTableWidgetItem located inside the QTableWidget
Hi,
I am using a QTableWidget and accessing the table details using the QTableWidgetItem class. I want to highlight the border of the selected area (like in excel sheet) for single or multiple selections. How this can can be achieved ???
thanks,
sudhish kapoor.
Re: How to set the border for QTableWidgetItem located inside the QTableWidget
you can use two options:
1. write a delegate
2. use QSS, there is an example in Qt Assistant how to customize QTableView.