清空Qtablewiget 表格的内容

转载自http://blog.csdn.net/qustdjx/article/details/7540377

今天用到了Qtablewiget 清空表格内容;

其中:

[cpp] view plain copy print ?
  1. void QTableWidget::clear () [slot]//清空掉表格内所有内容,包括标题头  
  2.   
  3. Removes all items in the view. This will also remove all selections. The table dimensions stay the same.  
  4.   
  5. void QTableWidget::clearContents () [slot]//这个清空所有内容不包括标题头  
  6.   
  7. Removes all items not in the headers from the view. This will also remove all selections. The table dimensions stay the same.  
 

[cpp] view plain copy print ?
  1. void QTableWidget::removeColumn ( int column ) [slot]//这个是删除一列,而不是清空表格  
  2.   
  3. Removes the column column and all its items from the table.  
  4.   
  5. void QTableWidget::removeRow ( int row ) [slot]//这个是删除一行,不是清空一行  
  6.   
  7. Removes the row row and all its items from the table.  

 

你可能感兴趣的:(清空Qtablewiget 表格的内容)