次の方法で共有


XmlMappedRange.BeforeRightClick イベント (2007 System)

更新 : 2007 年 11 月

XmlMappedRange コントロールが右クリックされたときに、既定の右クリック処理が行われる前に発生します。

名前空間 :  Microsoft.Office.Tools.Excel
アセンブリ :  Microsoft.Office.Tools.Excel.v9.0 (Microsoft.Office.Tools.Excel.v9.0.dll 内)

構文

'宣言
Public Event BeforeRightClick As DocEvents_BeforeRightClickEventHandler
'使用
Dim instance As XmlMappedRange
Dim handler As DocEvents_BeforeRightClickEventHandler

AddHandler instance.BeforeRightClick, handler
public event DocEvents_BeforeRightClickEventHandler BeforeRightClick

次のコードは、XmlMappedRange の右クリック処理をキャンセルする BeforeRightClick イベントのハンドラの例です。このイベント ハンドラは、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;
}

アクセス許可

  • 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

XmlMappedRange クラス

XmlMappedRange メンバ

Microsoft.Office.Tools.Excel 名前空間