Evento WorkbookBase.PivotTableCloseConnection

Ocorre depois que um relatório de tabela dinâmica fecha a conexão com sua fonte de dados.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (em Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Sintaxe

'Declaração
Public Event PivotTableCloseConnection As WorkbookEvents_PivotTableCloseConnectionEventHandler
public event WorkbookEvents_PivotTableCloseConnectionEventHandler PivotTableCloseConnection

Exemplos

O exemplo de código a seguir demonstra um manipulador para o PivotTableCloseConnection de evento. O manipulador de eventos exibe uma mensagem quando um relatório de tabela dinâmica fecha a conexão com sua fonte de dados.

Este exemplo é para uma personalização em nível de documento.

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.");
}

Segurança do .NET Framework

Consulte também

Referência

WorkbookBase Classe

Namespace Microsoft.Office.Tools.Excel