/ Published in: Visual Basic
The method checks whether a TreeView node with a given key exists. Note: Requires the getNodeByKey(String, Object) method.
Expand |
Embed | Plain Text
Private Function nodeExists(key As String, treeView_ As Object) As Boolean nodeExists = Not (getNodeByKey(key, treeView_) Is Nothing) End Function
You need to login to post a comment.
