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