Delegate vdtouchMoveDelegate
- Namespace
- vdWebLibrary
- Assembly
- JsPropertiesExtractor.dll
Represents a method that will handle the vdtouchMove event.
public delegate void vdtouchMoveDelegate(TouchEventArgs eventargs)
Parameters
eventargsTouchEventArgsThe TouchEventArgsobject of the event.
Examples
function _vdtouchMove(e) {
//Code to do
}
function fn(){
vdcanvas.vdtouchMove = _vdtouchMove;
}