%%PageItemTitle%%

VectorDraw Web Library

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

Syntax

JScript 
public delegate vdmousewheelDelegate( 
   eventargs : vdmouseoverEventArgs
)

Parameters

eventargs
The vdmouseoverEventArgsobject of the event.

Example

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

 
function fn(){ 
    vdcanvas.vdmousewheel = _vdmousewheel; 
}

See Also