Class RowEventArgs
Provides basic data for the row events.
Inherited Members
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class RowEventArgs : RadRoutedEventArgs
Constructors
RowEventArgs(RoutedEvent, Object, GridViewRowItem)
Initializes a new instance of the RowEventArgs class.
Declaration
public RowEventArgs(RoutedEvent routedEvent, object source, GridViewRowItem row)
Parameters
RoutedEvent
routedEvent
The routed event that is raised. |
System.Object
source
The source that has raised the event. |
GridViewRowItem
row
The current GridViewRowItem |
Properties
Row
The row in the current context.
Declaration
public GridViewRowItem Row { get; }
Property Value
GridViewRowItem
|