GetItemChecked

判断指定项目是否选中,如果选中,返回True,否则返回False。

语法

GetItemChecked(Index)

Index:  整数型,指定项目位置

示例

Dim lst As WinForm.CheckedListBox
lst = Forms(
"窗口1").Controls("CheckedListBox1")
If
lst.GetItemChecked(2) Then
    MessageBox.Show(
"第三项已经选中!")
End
If


 


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