MouseAvailable Property

Applies To

Application Object.

Description

True if a mouse is available (always True on the Macintosh). Read-only.

Example

This example displays a message if a mouse is not available.


If Application.MouseAvailable = False Then
    MsgBox "Your system does not have a mouse"
End If