Edit

Share via


WebPart.OnClosing(EventArgs) Method

Definition

Enables derived classes to provide custom handling when a WebPart control is closed on a Web Parts page.

C#
protected internal virtual void OnClosing(EventArgs e);

Parameters

e
EventArgs

An EventArgs that contains the event data.

Remarks

The method in the WebPart base class contains no implementation. Derived WebPart controls can override the method if needed to provide custom handling when the control is closed. The WebPartManager control automatically invokes the OnClosing method if you provide an implementation in a derived class.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also