FormComboBoxControl.endDrag Method

Definition

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

public:
 override void endDrag();
public override void endDrag ();
override this.endDrag : unit -> unit
Public Overrides Sub endDrag ()

Remarks

This event is not raised unless the DragDrop property is enabled for the control and a beginDrag event has already been started. To drag the 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 combo box control.

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

Applies to