Table of Contents

Delegate vdKeyDownDelegate

Namespace
vdWebLibrary
Assembly
JsPropertiesExtractor.dll

Represents a method that will handle the vdKeyDown event.

public delegate void vdKeyDownDelegate(object eventargs)

Parameters

eventargs object

The standard key down event arguments.

Examples

function _vdKeyDown(e) {
    //Code to do
}

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

Constructors

vdKeyDownDelegate(object, IntPtr)