ListView.OnItemDeleted(ListViewDeletedEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raises the ItemDeleted event.
protected:
virtual void OnItemDeleted(System::Web::UI::WebControls::ListViewDeletedEventArgs ^ e);
protected virtual void OnItemDeleted (System.Web.UI.WebControls.ListViewDeletedEventArgs e);
abstract member OnItemDeleted : System.Web.UI.WebControls.ListViewDeletedEventArgs -> unit
override this.OnItemDeleted : System.Web.UI.WebControls.ListViewDeletedEventArgs -> unit
Protected Overridable Sub OnItemDeleted (e As ListViewDeletedEventArgs)
Parameters
The event data.
Remarks
The ItemDeleted event is raised when an item's Delete button is clicked or the DeleteItem method is called, after the ListView control deletes the item. (A Delete button is a button control whose CommandName property is set to "Delete".) This enables you to perform a custom routine whenever this event occurs, such as checking the results of the delete operation.
Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.
The OnItemDeleted method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors
When you override OnItemDeleted(ListViewDeletedEventArgs) in a derived class, call the base class's OnItemDeleted(ListViewDeletedEventArgs) method so that registered delegates receive the event.