System.MouseTrails (method)

Syntax System.MouseTrails isOn
Description Toggles mouse trails on or off.
Comments If isOn is True , then mouse trails are turned on; otherwise, mouse trails are turned off. A runtime error is generated if mouse trails is not supported on your system.
Example This example turns on mouse trails.
Sub Main
  System.MouseTrails 1
End Sub