Interface
IMouseListener

Describes the four fundamental methods of a mouse handler object.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

cs-api-definition
public interface IMouseListener

Methods

MouseDoubleClick(PointerArgs)

Handles the mouse double click event.

Declaration

cs-api-definition
bool MouseDoubleClick(PointerArgs e)

Parameters

e

PointerArgs

The PointerArgs instance containing the event data.

Returns

bool

MouseDown(PointerArgs)

Handles the mouse-down event.

Declaration

cs-api-definition
bool MouseDown(PointerArgs e)

Parameters

e

PointerArgs

The PointerArgs instance containing the event data.

Returns

bool

MouseMove(PointerArgs)

Handles the mouse-move event.

Declaration

cs-api-definition
bool MouseMove(PointerArgs e)

Parameters

e

PointerArgs

The PointerArgs instance containing the event data.

Returns

bool

MouseUp(PointerArgs)

Handles the mouse-up event.

Declaration

cs-api-definition
bool MouseUp(PointerArgs e)

Parameters

e

PointerArgs

The PointerArgs instance containing the event data.

Returns

bool