Application.MouseAvailable Property

Word Developer Reference

True if there is a mouse available for the system. Read-only Boolean.

Syntax

expression.MouseAvailable

expression   An expression that returns an Application object.

Example

This example displays a message that no mouse is available.

Visual Basic for Applications
  If Application.MouseAvailable = False Then
    Msgbox "Make sure your mouse is plugged in."
Else
    Msgbox "Mouse is available"
End If

See Also