%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
vdtouchMoveDelegate Delegate
See Also  Example
vdWebLibrary Namespace : vdtouchMoveDelegate Delegate
eventargs
The TouchEventArgsobject of the event.
Represents a method that will handle the vdtouchMove event.

Syntax

JScript 
public delegate vdtouchMoveDelegate( 
   eventargs : TouchEventArgs
)

Parameters

eventargs
The TouchEventArgsobject of the event.

Example

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

 
function fn(){ 
    vdcanvas.vdtouchMove = _vdtouchMove; 
}

See Also