Search
Diagram.HandleKeyDown Method
See Also
 





Propagates keyboard input to interested manipulators and components.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool HandleKeyDown (
    int keyCode,
    int modifiers
)

Visual Basic  Copy Code

Public Function HandleKeyDown( _
    keyCode As Integer, _
    modifiers As Integer _
) As Boolean

 Parameters

keyCode
An integer value representing the key that was pressed.
modifiers
An integer value representing the modifier keys that were pressed.

 Return Value

true if a component or manipulator handled the event; otherwise, false.

 See Also