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 the status of displaying function Tool Tips.
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