Class RowDetailsVisibilityChangingEventArgs
Provides data for the RowDetailsVisibilityChanging event.
Inheritance
System.Object
RowDetailsVisibilityChangingEventArgs
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class RowDetailsVisibilityChangingEventArgs : CancelEventArgs
Constructors
RowDetailsVisibilityChangingEventArgs(GridViewRow, Nullable<Visibility>)
Initializes a new instance of the RowDetailsVisibilityChangingEventArgs class.
Declaration
public RowDetailsVisibilityChangingEventArgs(GridViewRow row, Nullable<Visibility> newVisibility)
Parameters
GridViewRow
row
The row. |
System.Nullable<System.Windows.Visibility>
newVisibility
The new visibility. |
Properties
NewVisibility
Gets the new visibility.
Declaration
public Nullable<Visibility> NewVisibility { get; }
Property Value
System.Nullable<System.Windows.Visibility>
The new visibility. |
Row
Gets the GridViewRow that details belong to.
Declaration
public GridViewRow Row { get; }
Property Value
GridViewRow
|