ListViewUpdateEventArgs(Int32) Constructor

Definition

Initializes a new instance of the ListViewUpdateEventArgs class.

public:
 ListViewUpdateEventArgs(int itemIndex);
public ListViewUpdateEventArgs (int itemIndex);
new System.Web.UI.WebControls.ListViewUpdateEventArgs : int -> System.Web.UI.WebControls.ListViewUpdateEventArgs
Public Sub New (itemIndex As Integer)

Parameters

itemIndex
Int32

The index of the item being updated.

Remarks

Use this constructor to initialize a new instance of the ListViewUpdateEventArgs class, using the specified item index.

Note

This constructor is primarily used by control developers when they raise events.

The following table shows the initial property value for an instance of the ListViewUpdateEventArgs class.

Property Initial value
ItemIndex The value that is contained in the itemIndex parameter.

Applies to

See also