NodeDragStart Event

Topic Last Modified: 2006-06-11

The NodeDragStart event occurs when a drag-and-drop operation is started.

Syntax


            
    Sub control_NodeDragStart(ByVal TNode As ExtreeView.TNode)

Parameters

  • control
    The instance name of the Exchange Store TreeView control.
  • TNode
    A TNode object of the dragged node.

Example

The following example illustrates a node's display name upon dragging.


Private Sub EXTV1_NodeDragDrop(ByVal TNode As EXTreeView.TNode)
    MsgBox "You are dragging " & TNode.DisplayName
End Sub