AppEvents_SheetPivotTableUpdateEventHandler Delegate 

A Delegate type used to add an event handler for the SheetPivotTableUpdate event. The SheetPivotTableUpdate event occurs after the sheet of the PivotTable report has been updated.

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

Usage

Sub Sub1(Sh As Object, _
    Target As PivotTable)
End Sub
Dim appEvents_SheetPivotTableUpdateEventHandler1 As New AppEvents_SheetPivotTableUpdateEventHandler(AddressOf Sub1)

Syntax

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

Parameters

  • Sh
    Required. The selected sheet.
  • Target
    Required. The selected PivotTable report.

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