%%PageItemTitle%%

VectorDraw Web Library

JsPropertiesExtractor Send comments on this topic.
vdclickDelegate Delegate
See Also  Example
vdWebLibrary Namespace : vdclickDelegate Delegate
eventargs
Represents a method that will handle the vdclick event.

Syntax

JScript 
public delegate vdclickDelegate( 
   eventargs : vdmouseoverEventArgs
)

Parameters

eventargs

Example

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

 
function fn(){ 
    vdcanvas.vdclick = _vdclick; 
}

See Also