//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
using System;
using System.Collections.Specialized;
using System.ComponentModel;
namespace System.Web.UI.WebControls {
public class ListViewEditEventArgs : CancelEventArgs {
private int _newEditIndex;
public ListViewEditEventArgs(int newEditIndex) : base(false) {
_newEditIndex = newEditIndex;
}
///
/// Gets the int argument to the command posted to the . This property is read-only.
///
public int NewEditIndex {
get {
return _newEditIndex;
}
}
}
}