Class GridViewRowDetailsEventArgs
Provides data for the LoadingRowDetails and UnloadingRowDetails events.
Inheritance
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewRowDetailsEventArgs : EventArgs
Constructors
GridViewRowDetailsEventArgs(GridViewRow, FrameworkElement)
Initializes a new instance of the GridViewRowDetailsEventArgs class.
Declaration
public GridViewRowDetailsEventArgs(GridViewRow row, FrameworkElement detailsElement)
Parameters
GridViewRow
row
The GridViewRow that details belong to. |
System.Windows.FrameworkElement
detailsElement
The System.Windows.FrameworkElement loaded from the row details template. |
Properties
DetailsElement
Gets the System.Windows.FrameworkElement loaded from the row details template.
Declaration
public FrameworkElement DetailsElement { get; }
Property Value
System.Windows.FrameworkElement
|
Row
Gets the GridViewRow that details belong to.
Declaration
public GridViewRow Row { get; }
Property Value
GridViewRow
|
Visibility
Gets the Visibility of the row details.
Declaration
public Nullable<Visibility> Visibility { get; }
Property Value
System.Nullable<System.Windows.Visibility>
|