%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
vdKeyDownDelegate Delegate
See Also  Example
vdWebLibrary Namespace : vdKeyDownDelegate Delegate
eventargs
The standard key down event arguments.
Represents a method that will handle the vdKeyDown event.

Syntax

JScript 
public delegate vdKeyDownDelegate( 
   eventargs : Object
)

Parameters

eventargs
The standard key down event arguments.

Example

C#Copy Code
  
function _vdKeyDown(e) { 
    //Code to do 

 
function fn(){ 
    vdcanvas.vdKeyDown = _vdKeyDown; 
}

See Also