Interface IMouseListener
Describes the four fundamental methods of a mouse handler object.
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public interface IMouseListener
Methods
MouseDoubleClick(PointerArgs)
Handles the mouse double click event.
Declaration
bool MouseDoubleClick(PointerArgs e)
Parameters
PointerArgs
e
The PointerArgs instance containing the event data. |
Returns
System.Boolean
|
MouseDown(PointerArgs)
Handles the mouse-down event.
Declaration
bool MouseDown(PointerArgs e)
Parameters
PointerArgs
e
The PointerArgs instance containing the event data. |
Returns
System.Boolean
|
MouseMove(PointerArgs)
Handles the mouse-move event.
Declaration
bool MouseMove(PointerArgs e)
Parameters
PointerArgs
e
The PointerArgs instance containing the event data. |
Returns
System.Boolean
|
MouseUp(PointerArgs)
Handles the mouse-up event.
Declaration
bool MouseUp(PointerArgs e)
Parameters
PointerArgs
e
The PointerArgs instance containing the event data. |
Returns
System.Boolean
|