Delegate vdKeyDownDelegate
- Namespace
- vdWebLibrary
- Assembly
- JsPropertiesExtractor.dll
Represents a method that will handle the vdKeyDown event.
public delegate void vdKeyDownDelegate(object eventargs)
Parameters
eventargsobjectThe standard key down event arguments.
Examples
function _vdKeyDown(e) {
//Code to do
}
function fn(){
vdcanvas.vdKeyDown = _vdKeyDown;
}