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