Class PositionChangedEventArgs
Provides data for the PositionChanged event.
Inheritance
System.Object
System.EventArgs
PositionChangedEventArgs
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 PositionChangedEventArgs : EventArgs
Constructors
PositionChangedEventArgs(GridViewRowInfo, GridViewColumn)
Initializes a new instance of the PositionChangingEventArgs class.
Declaration
public PositionChangedEventArgs(GridViewRowInfo row, GridViewColumn column)
Parameters
GridViewRowInfo
row
The new row. |
GridViewColumn
column
The new column. |
Properties
Column
Gets the columnm that should be the new current column.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
Row
Gets the row that should be the new current row.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
|