ListViewEditEventArgs(Int32) Constructor

Definition

Initializes a new instance of the ListViewEditEventArgs class.

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

Parameters

newEditIndex
Int32

The index of the item to edit.

Remarks

Use this constructor to initialize a new instance of the ListViewEditEventArgs class.

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 ListViewEditEventArgs.

Property Initial value
NewEditIndex The value of the newEditIndex parameter.

Applies to

See also