/ Published in: Visual Basic
The method checks whether a TreeView node with a given key exists.
Note: Requires the getNodeByKey(String, Object) method.
Note: Requires the getNodeByKey(String, Object) method.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Private Function nodeExists(key As String, treeView_ As Object) As Boolean nodeExists = Not (getNodeByKey(key, treeView_) Is Nothing) End Function