//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Web.UI.WebControls { using System; using System.ComponentModel; /// /// Provides data for some events. /// public class GridViewCancelEditEventArgs : CancelEventArgs { private int _rowIndex; /// /// Initializes a new instance of the /// class. /// public GridViewCancelEditEventArgs(int rowIndex) { this._rowIndex = rowIndex; } public int RowIndex { get { return _rowIndex; } } } }