%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
vdmousemoveDelegate Delegate
See Also  Example
vdWebLibrary Namespace : vdmousemoveDelegate Delegate
eventargs
The vdmouseoverEventArgs object of the event.
Represents a method that will handle the vdmousemove event.

Syntax

JScript 
public delegate vdmousemoveDelegate( 
   eventargs : vdmouseoverEventArgs
)

Parameters

eventargs
The vdmouseoverEventArgs object of the event.

Example

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

 
function fn(){ 
    vdcanvas.vdmousemove = _vdmousemove; 
}

See Also