ListView.OnItemCreated(ListViewItemEventArgs) Method

Definition

Raises the ItemCreated event.

protected:
 virtual void OnItemCreated(System::Web::UI::WebControls::ListViewItemEventArgs ^ e);
protected virtual void OnItemCreated (System.Web.UI.WebControls.ListViewItemEventArgs e);
abstract member OnItemCreated : System.Web.UI.WebControls.ListViewItemEventArgs -> unit
override this.OnItemCreated : System.Web.UI.WebControls.ListViewItemEventArgs -> unit
Protected Overridable Sub OnItemCreated (e As ListViewItemEventArgs)

Parameters

e
ListViewItemEventArgs

The event data.

Remarks

Before the ListView control can be rendered, a ListViewItem object must be created for each item in the control. The ItemCreated event is raised when each item in the ListView control is created. This enables you to perform a custom routine whenever this event occurs, such as adding content to an item.

The OnItemCreated method is called by the ListView control to raise the ItemCreated event. It is typically used by control developers when extending the ListView class.

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnItemCreated 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 OnItemCreated(ListViewItemEventArgs) in a derived class, call the base class's OnItemCreated(ListViewItemEventArgs) method so that registered delegates receive the event.

Applies to

See also