XmlMappedRange.BeforeRightClick 事件
在 XmlMappedRange 控制項上按一下滑鼠右鍵時 (在預設的按一下滑鼠右鍵動作前) 發生。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Event BeforeRightClick As DocEvents_BeforeRightClickEventHandler
event DocEvents_BeforeRightClickEventHandler BeforeRightClick
範例
下列程式碼範例展示 BeforeRightClick 事件的處理常式,此處理常式會取消 XmlMappedRange 中的按一下滑鼠右鍵動作。 事件處理常式會告知使用者不允許 XmlMappedRange 的按一下滑鼠右鍵動作,然後將 DocEvents_BeforeRightClickEventHandler 事件處理常式的 Cancel 參數設定為 true,令 Microsoft Office Excel 取消按一下滑鼠右鍵動作。 這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Sub CustomerLastNameCell_BeforeRightClick(ByVal Target As Excel.Range, _
ByRef Cancel As Boolean) Handles CustomerLastNameCell.BeforeRightClick
MsgBox("Right-clicking in this range is not allowed.")
Cancel = True
End Sub
private void XmlMappedRange_BeforeRightClick()
{
this.CustomerLastNameCell.BeforeRightClick +=
new Excel.DocEvents_BeforeRightClickEventHandler(
CustomerLastNameCell_BeforeRightClick);
}
void CustomerLastNameCell_BeforeRightClick(Excel.Range Target,
ref bool Cancel)
{
MessageBox.Show("Right-clicking in this range " +
" is not allowed.");
Cancel = true;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。