Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、pyqt4テーブルウィジェットがあるとします。
self.table = QtGui.QTableWidget(3,4)
テーブルのすべての内容をself.table.clear()削除できます。ただし、コンテンツだけでなく、テーブルのすべてのセルを削除するにはどうすればよいですか?
self.table.clear()
または、行数と列数を設定できます。
self.table.setRowCount(0) self.table.setColumnCount(0)
試したことはありませんが、試すことができます:
for i in reversed(range(self.table.rowCount())): self.table.removeRow(i)