Checked

返回或设置ListView的复选框是否选中。

示例

选中所有行的复选框:

Dim lvw As WinForm.ListView = e.Form.Controls("ListView1")
For
Each r As WinForm.ListViewRow In lvw.Rows
   
r.Checked = True
Next

 


本页地址:http://www.foxtable.com/webhelp/topics/2862.htm