DataListItemEventArgs(DataListItem) Constructor

Definition

Initializes a new instance of the DataListItemEventArgs class.

public:
 DataListItemEventArgs(System::Web::UI::WebControls::DataListItem ^ item);
public DataListItemEventArgs (System.Web.UI.WebControls.DataListItem item);
new System.Web.UI.WebControls.DataListItemEventArgs : System.Web.UI.WebControls.DataListItem -> System.Web.UI.WebControls.DataListItemEventArgs
Public Sub New (item As DataListItem)

Parameters

item
DataListItem

A DataListItem object that represents an item in the DataList control.

Examples

The following example demonstrates how to create and initialize a new instance of the DataListItemEventArgs class.

void Item_Created(Object sender, DataListItemEventArgs e)
{
   DataListItemEventArgs item_arg = new DataListItemEventArgs(e.Item);
}
Sub Item_Created(sender As Object, e As DataListItemEventArgs)
    Dim item_arg As New DataListItemEventArgs(e.Item)
End Sub

Remarks

Use this constructor to create and initialize a new instance of the DataListItemEventArgs class.

When an instance of DataListItemEventArgs is created by a call to this constructor, the following property is initialized to the specified value.

Property Initial Value
Item The value of the item parameter.

Applies to