NodeSelected Event
Topic Last Modified: 2006-06-11
The NodeSelected event occurs when a node has changed.
Syntax
Sub control_NodeSelected( TNode As ExTreeView.TNode)
Parameters
- control
The instance name of the Exchange Store TreeView control.
- TNode
A TNode object of the selected node.
Remarks
The NodeClick event always fires when clicked; the NodeSelect event fires only when the selected node changes.
Example
The following example illustrates a node's URL upon selection.
Private Sub EXTV1_NodeClick(TNode As TNode)
lbl1.Caption = TNode.url
End Sub