WebPart.OnClosing(EventArgs) Method

Definition

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

protected public:
 virtual void OnClosing(EventArgs ^ e);
protected internal virtual void OnClosing (EventArgs e);
abstract member OnClosing : EventArgs -> unit
override this.OnClosing : EventArgs -> unit
Protected Friend Overridable Sub OnClosing (e As EventArgs)

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

See also