Compartir a través de


ChartSheetBase.Deactivate (Evento)

Se produce cuando la selección sale del objeto Microsoft.Office.Tools.Excel.ChartSheetBase, haciendo que se desactive el objeto Microsoft.Office.Tools.Excel.ChartSheetBase.

Espacio de nombres:  Microsoft.Office.Tools.Excel
Ensamblado:  Microsoft.Office.Tools.Excel.v4.0.Utilities (en Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Sintaxis

'Declaración
Public Event Deactivate As ChartEvents_DeactivateEventHandler
public event ChartEvents_DeactivateEventHandler Deactivate

Ejemplos

El ejemplo de código siguiente muestra un controlador para el evento Deactivate que muestra un cuadro de mensaje cuando se desactiva el objeto Microsoft.Office.Tools.Excel.ChartSheetBase actual.

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

Seguridad de .NET Framework

Vea también

Referencia

ChartSheetBase Clase

Microsoft.Office.Tools.Excel (Espacio de nombres)