Search
ControlMouseAction Enumeration
See Also
 





Specifies available ways to handle mouse clicks on .NET controls hosted in a ControlNode.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public enum ControlMouseAction

Visual Basic  Copy Code

Public Enum ControlMouseAction

 Members

  Member name Description

IgnoreControl

NetDiagram tries to intercept the mouse message and not pass it to the control. That allows drawing links from anywhere within the control.

PassToControl

Let the control handle the mouse click. Do not select the host node.

SelectNode

The host node gets selected when the control is clicked. The control is left to handle the mouse click too.

 Remarks

IgnoreControl works only with controls that do not capture the mouse.

 See Also