Leer en inglés

Compartir a través de


WorksheetBase.Shutdown Event

Definition

Occurs when the worksheet host item shuts down.

C#
public event EventHandler Shutdown;

Event Type

Examples

The following code example demonstrates a handler for the Shutdown event that displays a message when the WorksheetBase class unloads.

This example is for a document-level customization.

C#
private void WorksheetShutdown()
{
    this.Shutdown += new EventHandler(Worksheet1_Shutdown);
}

void Worksheet1_Shutdown(object sender, EventArgs e)
{
    MessageBox.Show(this.Name + " is shutting down.");
}

Remarks

This is the last event to be called in the WorksheetBase class as the WorksheetBase class unloads. Use this event for any additional clean up.

In a document-level customization, the application domain for the assembly unloads when the worksheet host item shuts down.

In an application-level add-in, the application domain does not unload when the worksheet host item shuts down. Also, the underlying worksheet object is no more available. To access the worksheet before it shuts down use BeforeClose instead.

Applies to

Producto Versiones
Visual Studio Tools for Office 2017, 2019, 2022