Excel) (Application.DisplayInsertOptions 屬性
如果 應該顯示 [ 插入選項] 按鈕,則為 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 支援與意見反應。