다음을 통해 공유


NodeClick Event

Topic Last Modified: 2006-06-11

The NodeClick event is fired when a node is clicked.

Syntax


            
    Sub control_NodeClick()

Parameters

  • control
    The instance name of the Exchange Store TreeView control.

Example

The following example displays a node's URL upon selection.


Private Sub EXTV1_NodeClick()
    Dim tn As TNode
    Set tn = EXTV1.GetSelectedNode
    lbl1.Caption = tn.url
End Sub