Share via


ChartSheet.Deactivate 事件 (2007 系統)

更新:2007 年 11 月

會在選取範圍從 Microsoft.Office.Tools.Excel.ChartSheet 移開時發生,導致 Microsoft.Office.Tools.Excel.ChartSheet 停用。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel.v9.0 (在 Microsoft.Office.Tools.Excel.v9.0.dll 中)

語法

Public Event Deactivate As ChartEvents_DeactivateEventHandler

Dim instance As ChartSheet
Dim handler As ChartEvents_DeactivateEventHandler

AddHandler instance.Deactivate, handler
public event ChartEvents_DeactivateEventHandler Deactivate

範例

下列程式碼範例示範 Deactivate 事件的處理常式,這個處理常式在目前的 Microsoft.Office.Tools.Excel.ChartSheet 停用時會顯示訊息方塊。

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

使用權限

請參閱

參考

ChartSheet 類別

ChartSheet 成員

Microsoft.Office.Tools.Excel 命名空間