Partager via


ChartSheet.Deactivate, événement

Se produit lorsque la sélection s'éloigne de Microsoft.Office.Tools.Excel.ChartSheet, provoquant la désactivation de Microsoft.Office.Tools.Excel.ChartSheet.

Espace de noms :  Microsoft.Office.Tools.Excel
Assemblys :   Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
  Microsoft.Office.Tools.Excel (dans Microsoft.Office.Tools.Excel.dll)

Syntaxe

'Déclaration
Event Deactivate As ChartEvents_DeactivateEventHandler
event ChartEvents_DeactivateEventHandler Deactivate

Exemples

L'exemple de code suivant illustre un gestionnaire de l'événement Deactivate qui affiche un message lorsque le Microsoft.Office.Tools.Excel.ChartSheet actuel est désactivé.

Private Sub DisplayDeactivations()
    Globals.Sheet1.Range("A1", "A5").Value2 = 22
    Globals.Sheet1.Range("B1", "B5").Value2 = 55

    Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
        Excel.XlRowCol.xlColumns)
    Me.ChartType = Excel.XlChartType.xl3DColumn
End Sub

Sub ChartSheet1_Deactivate() Handles Me.Deactivate
    MsgBox("The chart sheet was deactivated.")
End Sub
private void DisplayDeactivations()
{
    Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
    Globals.Sheet1.Range["B1", "B5"].Value2 = 55;

    this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
        Excel.XlRowCol.xlColumns);
    this.ChartType = Excel.XlChartType.xl3DColumn;

    this.Deactivate +=
        new Excel.ChartEvents_DeactivateEventHandler(
        ChartSheet1_Deactivate);
}

void ChartSheet1_Deactivate()
{
    MessageBox.Show("The chart sheet was deactivated.");
}

Sécurité .NET Framework

Voir aussi

Référence

ChartSheet Interface

Microsoft.Office.Tools.Excel, espace de noms