Class VirtualGridRowsEventArgs
Provides data for rows related events.
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 VirtualGridRowsEventArgs : VirtualGridEventArgs
Constructors
VirtualGridRowsEventArgs(IEnumerable<Int32>, VirtualGridViewInfo)
Initializes a new instance of the VirtualGridRowsEventArgs class.
Declaration
public VirtualGridRowsEventArgs(IEnumerable<int> rowIndices, VirtualGridViewInfo viewInfo)
Parameters
System.Collections.Generic.IEnumerable<System.Int32>
rowIndices
The row indices. |
VirtualGridViewInfo
viewInfo
The view info. |
Properties
RowIndices
Gets the row indices of the affected rows.
Declaration
public IEnumerable<int> RowIndices { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Int32>
|