Application.DisplayFunctionToolTips property (Excel)

True if function ToolTips can be displayed. Read/write Boolean.

Syntax

expression.DisplayFunctionToolTips

expression A variable that represents an Application object.

Example

In this example, Microsoft Excel notifies the user of the status of displaying function ToolTips.

Sub CheckToolTip() 
 
 ' Notify the user of the ability to display function ToolTips. 
 If Application.DisplayFunctionToolTips = True Then 
 MsgBox "The ability to display function ToolTips is on." 
 Else 
 MsgBox "The ability to display function ToolTips is off." 
 End If 
 
End Sub

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.