Expand Minimize
This topic has not yet been rated - Rate this topic

Application.DisplayFunctionToolTips Property (Excel)

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
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.