Excel) (Application.CalculationInterruptKey 屬性
設定或傳回 XlCalculationInterruptKey 常數,指定在執行計算時可能會中斷 Microsoft Excel 的索引鍵。 讀取/寫入。
語法
運算式。CalculationInterruptKey
expression 代表 Application 物件的變數。
範例
在本範例中,Microsoft Excel 會判斷計算中斷按鍵的設定,並通知使用者。
Sub CheckInterruptKey()
' Determine the calculation interrupt key and notify the user.
Select Case Application.CalculationInterruptKey
Case xlAnyKey
MsgBox "The calculation interrupt key is set to any key."
Case xlEscKey
MsgBox "The calculation interrupt key is set to 'Escape'"
Case xlNoKey
MsgBox "The calculation interrupt key is set to no key."
End Select
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。