//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls { using System; /// /// Provides data for the event. /// public class GridViewRowEventArgs : EventArgs { private GridViewRow _row; /// /// Initializes a new instance of class. /// public GridViewRowEventArgs(GridViewRow row) { this._row = row; } /// /// Gets an row in the . This property is read-only. /// public GridViewRow Row { get { return _row; } } } }