Share via


WorkbookEvents_SheetActivateEventHandler Delegate 

A Delegate type used to add an event handler for the SheetActivate event. The SheetActivate event occurs when any sheet is activated.

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

Usage

Sub Sub1(Sh As Object)
End Sub
Dim workbookEvents_SheetActivateEventHandler1 As New WorkbookEvents_SheetActivateEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub WorkbookEvents_SheetActivateEventHandler( _
    <InAttribute()> ByVal Sh As Object _
)
public delegate void WorkbookEvents_SheetActivateEventHandler(
    [In] object Sh
);
public delegate Void WorkbookEvents_SheetActivateEventHandler(
    Object^ Sh
);
public delegate void WorkbookEvents_SheetActivateEventHandler(
    /*in*/System.Object Sh
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Sh
    The activated sheet. Can be a Chart or Worksheet object.

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