FormTreeControl.endDrag Method [AX 2012]

Is called when the user has finished dragging a form tree control.

public void endDrag()

Run On

Client

This event is not raised unless the DragDrop property is enabled for the control and a beginDrag event has already been started.

To drag a control, the user presses the mouse button in the control area and then moves the mouse pointer.

The following example displays a message in the Infolog when the user has finished dragging the form tree control.

public void endDrag() 
{ 
 
    info("EndDrag completed"); 
 
    super(); 
}

Community Additions

ADD
Show: