Table of Contents

Field vdmousemoveAfter

Namespace
vdWebLibrary
Assembly
JsPropertiesExtractor.dll

Get/Set a method that called whenever the mouse moves, after default web control actions and can be handled by a function described by the vdmousemoveDelegate.

public vdmousemoveDelegate vdmousemoveAfter

Returns

vdmousemoveDelegate
Get/Set a method that called whenever the mouse moves, after default web control actions and can be handled by a function described by the .

Examples

//Show custom toolip even if an action is active

 vdcanvas.ToolTip.AutoShow = false;
 vdcanvas.vdmousemoveAfter = _vdmousemoveafter;
 function _vdmousemoveafter(e) {
     var point = [e.xPix, e.yPix, 0];
     var pv = vdcanvas.PixelToView(point);
     vdcanvas.ToolTip.show(pv, e.x.toFixed(2).toString() + "," + e.y.toFixed(2).toString());//display the world cordinates of the cursor position
}