Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The SuppressMouseMoveEvent property enables or disables the control's OnMouseMove event. This may be necessary for high performance situations. A lot of overhead occurs in firing the OnMouseMove event since there is so much data passed each time. Therefore, the event is suppressed by default. At any time you can set this property to 0 to reactivate the OnMouseMove event.

Example

Code Block
 // Activate the OnMouseMove event 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.SuppressMouseMoveEvent", 0)

...