Class GridViewCurrentViewChangedEventArgs
Provides data for the CurrentViewChanged event
Inheritance
System.Object
System.EventArgs
GridViewCurrentViewChangedEventArgs
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 GridViewCurrentViewChangedEventArgs : EventArgs
Constructors
GridViewCurrentViewChangedEventArgs(GridViewInfo, GridViewInfo)
Initializes a new instance of the GridViewCreateCellEventArgs class.
Declaration
public GridViewCurrentViewChangedEventArgs(GridViewInfo oldView, GridViewInfo newView)
Parameters
GridViewInfo
oldView
The GridViewInfo that is currently active. |
GridViewInfo
newView
The GridViewInfo that will become active. |
Properties
NewView
Gets the new current view.
Declaration
public GridViewInfo NewView { get; }
Property Value
GridViewInfo
|
OldView
Gets the old current view.
Declaration
public GridViewInfo OldView { get; }
Property Value
GridViewInfo
|