Workbook.PivotTableCloseConnection Event (2007 System)
Occurs after a PivotTable report closes the connection to its data source.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)
Syntax
'Declaration
Public Event PivotTableCloseConnection As WorkbookEvents_PivotTableCloseConnectionEventHandler
'Usage
Dim instance As Workbook
Dim handler As WorkbookEvents_PivotTableCloseConnectionEventHandler
AddHandler instance.PivotTableCloseConnection, handler
public event WorkbookEvents_PivotTableCloseConnectionEventHandler PivotTableCloseConnection
public:
event WorkbookEvents_PivotTableCloseConnectionEventHandler^ PivotTableCloseConnection {
void add (WorkbookEvents_PivotTableCloseConnectionEventHandler^ value);
void remove (WorkbookEvents_PivotTableCloseConnectionEventHandler^ value);
}
JScript does not support events.
Examples
The following code example demonstrates a handler for the PivotTableCloseConnection event. The event handler displays a message when a PivotTable report closes the connection to its data source.
This example is for a document-level customization.
Sub ThisWorkbook_PivotTableCloseConnection( _
ByVal Target As Excel.PivotTable) _
Handles Me.PivotTableCloseConnection
MsgBox("The PivotTable connection for " & _
Target.Name & " was closed.")
End Sub
private void WorkbookPivotTableCloseConnection()
{
this.PivotTableCloseConnection +=
new Excel.WorkbookEvents_PivotTableCloseConnectionEventHandler(
ThisWorkbook_PivotTableCloseConnection);
}
void ThisWorkbook_PivotTableCloseConnection(
Excel.PivotTable Target)
{
MessageBox.Show("The PivotTable connection for " + Target.Name +
" was closed.");
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.