WebPartCancelEventHandler Delegate
Represents the method that will handle the SelectedWebPartChanging event, WebPartClosing event, or WebPartDeleting event of the WebPartManager class.
Assembly: System.Web (in System.Web.dll)
public delegate void WebPartCancelEventHandler( Object^ sender, WebPartCancelEventArgs^ e )
Parameters
- sender
-
Type:
System::Object^
The source of the event.
- e
-
Type:
System.Web.UI.WebControls.WebParts::WebPartCancelEventArgs^
A WebPartCancelEventArgs that contains the event data.
The method specified in the WebPartCancelEventHandler delegate is called when a SelectedWebPartChanging event, WebPartClosing event, or WebPartDeleting event is raised.
Page developers can provide custom handlers for Web Parts events by adding an OnSelectedWebPartChanging attribute, OnWebPartClosing attribute, or OnWebPartDeleting attribute to the <asp:webpartmanager> element in a page, and assigning a custom method name to the attribute. A custom handler can also be assigned programmatically. For more information on programmatically assigning an event handler, see NIB: How to: Connect Event Handler Methods to Events.
Available since 2.0