Class CurrentRowChangedEventArgs
Provides data for the CurrentRowChanged event
Inheritance
System.Object
System.EventArgs
CurrentRowChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class CurrentRowChangedEventArgs : EventArgs
Constructors
CurrentRowChangedEventArgs(GridViewRowInfo, GridViewRowInfo)
Initializes a new instance of the CurrentRowChangedEventArgs class.
Declaration
public CurrentRowChangedEventArgs(GridViewRowInfo oldRow, GridViewRowInfo newRow)
Parameters
GridViewRowInfo
oldRow
The old row. |
GridViewRowInfo
newRow
The new row. |
Fields
CurrentRow
Gets the new row.
Declaration
public readonly GridViewRowInfo CurrentRow
Field Value
GridViewRowInfo
|