Search
FlowChart.FireMouseMove Property
See Also
 



Gets or sets a value indicating whether the MouseMove event should be raised.

 Syntax

VB6  Copy Code

Public Property Get FireMouseMove() As Boolean
Public Property Let FireMouseMove( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_FireMouseMove ()
void put_FireMouseMove (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

Enables / disables firing of the MouseMove event. This event is raised periodically while the user moves the mouse above the document area. It is disabled by default because it might lead to unnecessary processing overhead.

 See Also