Skip to content

Latest commit

 

History

History
43 lines (22 loc) · 865 Bytes

81c1d837-463f-bc33-f815-7c6dc9678d1b.md

File metadata and controls

43 lines (22 loc) · 865 Bytes

Application.DisplayInsertOptions Property (Excel)

True if the Insert Options button should be displayed. Read/write Boolean .

Syntax

expression . DisplayInsertOptions

expression A variable that represents an Application object.

Example

In this example, Microsoft Excel notifies the user the status of displaying the Insert Options button.

Sub SettingToolTip() 
 
 ' Notify the user of the ToolTip status. 
 If Application.DisplayInsertOptions = True Then 
 MsgBox "The ability to display the Insert Options button is on." 
 Else 
 MsgBox "The ability to display the Insert Options button is off." 
 End If 
 
End Sub

See also

Concepts

Application Object

Other resources

Application Object Members