%%PageItemTitle%%

VectorDraw Web Library

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

Syntax

JScript 
public delegate vddblclickDelegate( 
   eventargs : vdmouseoverEventArgs
)

Parameters

eventargs
The vdmouseoverEventArgsobject of the event.

Example

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

 
function fn(){ 
    vdcanvas.vddblclick = _vddblclick; 
}

See Also