AppEvents_SheetBeforeRightClickEventHandler Delegate 

A Delegate type used to add an event handler for the SheetBeforeRightClick event. The SheetBeforeRightClick event occurs when any worksheet is right-clicked, before the default right-click action.

Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)

Usage

Sub Sub1(Sh As Object, _
    Target As Range, _
    Cancel As Boolean)
End Sub
Dim appEvents_SheetBeforeRightClickEventHandler1 As New AppEvents_SheetBeforeRightClickEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub AppEvents_SheetBeforeRightClickEventHandler( _
    <InAttribute()> ByVal Sh As Object, _
    <InAttribute()> ByVal Target As Range, _
    <InAttribute(), OutAttribute()> ByRef Cancel As Boolean _
)
public delegate void AppEvents_SheetBeforeRightClickEventHandler(
    [In] object Sh, 
    [In] Range Target, 
    [In, Out] ref bool Cancel
);
public delegate Void AppEvents_SheetBeforeRightClickEventHandler(
    Object^ Sh, 
    Range^ Target, 
    &Boolean Cancel
);
public delegate void AppEvents_SheetBeforeRightClickEventHandler(
    /*in*/System.Object Sh, 
    /*in*/Range Target, 
    /*in*/boolean Cancel
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Sh
    A Worksheet object that represents the sheet.
  • Target
    The cell nearest to the mouse pointer when the right-click occurred.
  • Cancel
    False when the event occurs. If the event procedure sets this argument to True, the default right-click action isn't performed when the procedure is finished.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Excel Namespace