You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Enables or disables the mouse move event.

Usage

Set_Property(OLECtrlEntID, "OLE.SuppressMouseMoveEvent", Boolean)

Values

[True | False]

Default: True

Remarks

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

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

See Also

OnMouseMove

  • No labels