Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 770 Bytes

Excel.Application.MouseAvailable.md

File metadata and controls

39 lines (24 loc) · 770 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.MouseAvailable property (Excel)
vbaxl10.chm133167
vbaxl10.chm133167
Excel.Application.MouseAvailable
b22f9d44-6a84-6716-d663-450f08c5557d
04/05/2019
medium

Application.MouseAvailable property (Excel)

True if a mouse is available. Read-only Boolean.

Syntax

expression.MouseAvailable

expression A variable that represents an Application object.

Example

This example displays a message if a mouse isn't available.

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

[!includeSupport and feedback]