%%PageItemTitle%%

VectorDraw Web Library

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

Syntax

JScript 
public delegate vdmouseupDelegate( 
   eventargs : vdmouseoverEventArgs
)

Parameters

eventargs
The vdmouseoverEventArgsobject of the event.

Example

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

  
function fn(){ 
    vdcanvas.vdmouseup = _vdmouseup; 
}

See Also