Application.DisplayInsertOptions 属性 (Excel)
如果应显示“插入选项”按钮,则该属性值为 True。 读/写 Boolean。
语法
表达式。DisplayInsertOptions
expression:表示 Application 对象的变量。
示例
在此示例中,Microsoft Excel 通知用户显示 “插入选项” 按钮的状态。
Sub SettingToolTip()
' Notify the user of the ability to display the Insert Options button.
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
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。