NodeRightClick Event
Topic Last Modified: 2006-06-11
The NodeRightClick event occurs when a node is right-clicked.
Syntax
Sub control_NodeRightClick( TNode As ExTreeView.TNode)
Parameters
- control
The instance name of the Exchange Store TreeView control.
- TNode
A TNode object of the right-clicked node.
Remarks
This event is useful for displaying pop-up menus.
Example
The following example illustrates a node's root URL upon a right-click.
Private Sub EXTV1_NodeClick(TNode As TNode)
lbl1.Caption = TNode.RootURL
End Sub