VisioIsIdle event

Microsoft Visio Developer Reference

VisioIsIdle event

   Example   

Occurs after the application empties its message queue.

Version added

5.0

Syntax

Private Sub object_VisioIsIdle(ByVal app As IVApplication)

object

The WithEvents object that receives the event.

Remarks

Visio continually processes messages in its message queue. When its message queue is empty:

  1. Visio performs its own idle time processing.
  1. Visio tells Microsoft Visual Basic for Applications to perform its idle time processing.
  1. If the message queue is still empty, Visio fires the VisioIsIdle event.
  1. If the message queue is still empty, Visio calls WaitMessage, which is a call to Microsoft Windows that doesn't return until a new message gets added to the Visio message queue.

A client program can use the VisioIsIdle event as a signal to perform its own background processing.

The VisioIsIdle event is not the equivalent of a standard timer event. Client programs that need to be called on a periodic basis should use standard timer techniques because the duration in which Visio is idle (calls WaitMessage) is unpredictable. For client programs that are only monitoring Visio activity, however, the VisioIsIdle event can be sufficient because until WaitMessage returns to Visio, there cannot have been any Visio activity since the VisioIsIdle event was last fired.

If you're using Microsoft Visual Basic or Visual Basic for Applications, the syntax in this topic describes a common, efficient way to handle events.

If you want to create your own Event objects, use the Add or AddAdvise method. To create an Event object that runs an add-on, use the Add method as it applies to the EventList collection. To create an Event object that receives notification, use the AddAdvise method. To find an event code for the event you want to create, see Event codes.