Contains
判断是否存在指定名称的节点。
示例
Dim
tr
As
WinForm.TreeView
tr = e.Form.Controls(
"TreeView1"
)
If
tr.Nodes.Contains(
"北京"
)
Then
MessageBox.Show(
"节点已经存在"
)
Else
tr.Nodes.Add(
"北京"
)
End
If
本页地址:
http://www.foxtable.com/webhelp/topics/2220.htm