WorkbookBase.PivotTableOpenConnection, événement
Se produit après qu'un rapport PivotTable a ouvert la connexion à sa source de données.
Espace de noms : Microsoft.Office.Tools.Excel
Assembly : Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntaxe
'Déclaration
Public Event PivotTableOpenConnection As WorkbookEvents_PivotTableOpenConnectionEventHandler
public event WorkbookEvents_PivotTableOpenConnectionEventHandler PivotTableOpenConnection
Exemples
L'exemple de code suivant illustre un gestionnaire pour l'événement PivotTableOpenConnection. Le gestionnaire d'événements affiche un message lorsqu'un rapport PivotTable ouvre la connexion à sa source de données.
Cet exemple illustre une personnalisation au niveau du document.
Sub ThisWorkbook_PivotTableOpenConnection( _
ByVal Target As Excel.PivotTable) _
Handles Me.PivotTableOpenConnection
MsgBox("The PivotTable connection for " & _
Target.Name & " was opened.")
End Sub
private void WorkbookPivotTableOpenConnection()
{
this.PivotTableOpenConnection +=
new Excel.WorkbookEvents_PivotTableOpenConnectionEventHandler(
ThisWorkbook_PivotTableOpenConnection);
}
void ThisWorkbook_PivotTableOpenConnection(
Excel.PivotTable Target)
{
MessageBox.Show("The PivotTable connection for " + Target.Name +
" was opened.");
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.