Class RowEnumeratorEventArgs
Provides data for all events used uin GridViewRowInfoEnumerator.
Inheritance
System.Object
    System.EventArgs
    RowEnumeratorEventArgs
  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 RowEnumeratorEventArgs : EventArgs
  Constructors
RowEnumeratorEventArgs(GridViewRowInfo)
Initializes a new instance of the RowEnumeratorEventArgs class.
Declaration
public RowEnumeratorEventArgs(GridViewRowInfo row)
  Parameters
| 
        GridViewRowInfo
        row
         The row that is currently processed.  | 
    
Properties
ProcessRow
Gets or sets a value indicating whether to process the row or not
Declaration
public bool ProcessRow { get; set; }
  Property Value
| 
        System.Boolean
         
  | 
    
Row
Gets the row that is currently processed
Declaration
public GridViewRowInfo Row { get; }
  Property Value
| 
        GridViewRowInfo
         
  |