%%PageItemTitle%%

VectorDraw Web Library

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

Syntax

JScript 
public delegate vdmousedownDelegate( 
   eventargs : vdmouseoverEventArgs
)

Parameters

eventargs
The vdmouseoverEventArgsobject of the event.

Example

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

 
function fn(){ 
    vdcanvas.vdmousedown = _vdmousedown; 
}

See Also