Application.DisplayFunctionToolTips Property (Excel)
Office 2013
True if function ToolTips can be displayed. Read/write Boolean.
expression .DisplayFunctionToolTips
expression A variable that represents an Application object.
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