Delegate vdmouseupDelegate
- Namespace
- vdWebLibrary
- Assembly
- JsPropertiesExtractor.dll
Represents a method that will handle the vdmouseup event.
public delegate void vdmouseupDelegate(vdmouseoverEventArgs eventargs)
Parameters
eventargsvdmouseoverEventArgsThe vdmouseoverEventArgsobject of the event.
Examples
function _vdmouseup(e) {
//Code to do
}
function fn(){
vdcanvas.vdmouseup = _vdmouseup;
}