WorkflowView.OnMouseDown(MouseEventArgs) Method

Definition

Occurs when the mouse pointer is over the WorkflowView and a mouse button is pressed.

protected:
 override void OnMouseDown(System::Windows::Forms::MouseEventArgs ^ e);
protected override void OnMouseDown (System.Windows.Forms.MouseEventArgs e);
override this.OnMouseDown : System.Windows.Forms.MouseEventArgs -> unit
Protected Overrides Sub OnMouseDown (e As MouseEventArgs)

Parameters

e
MouseEventArgs

A MouseEventArgs that contains information about the event.

Remarks

Mouse events occur in the following order:

1.OnMouseEnter

2.OnMouseMove

3.OnMouseHover/ OnMouseDown or OnMouseWheel

4.OnMouseUp

5.OnMouseLeave

OnMouseEnter occurs when the mouse pointer enters the WorkflowView.

OnMouseDown occurs when the mouse pointer is over the WorkflowView and a mouse button is pressed.

Applies to