Class SearchProgressChangedEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class SearchProgressChangedEventArgs : EventArgs
  Constructors
SearchProgressChangedEventArgs(String, GridSearchResultCellInfo, GridSearchResultCellCollection, Boolean)
Initializes a new instance of the SearchProgressChangedEventArgs class.
Declaration
public SearchProgressChangedEventArgs(string criteria, GridSearchResultCellInfo cell, GridSearchResultCellCollection cells, bool searchFinished)
  Parameters
| 
        System.String
        criteria
         The criteria.  | 
    
| 
        GridSearchResultCellInfo
        cell
         The cell.  | 
    
| 
        GridSearchResultCellCollection
        cells
         The cells.  | 
    
| 
        System.Boolean
        searchFinished
         The search finished.  | 
    
Properties
Cell
Gets a cell info representing a new search result.
Declaration
public GridSearchResultCellInfo Cell { get; }
  Property Value
| 
        GridSearchResultCellInfo
         
  | 
    
Cells
Gets a list of cell infos representing a new search result.
Declaration
public GridSearchResultCellCollection Cells { get; }
  Property Value
| 
        GridSearchResultCellCollection
         
  | 
    
SearchCriteria
Gets the search criteria that is currently being used for the search operation.
Declaration
public string SearchCriteria { get; }
  Property Value
| 
        System.String
         
  | 
    
SearchFinished
Gets a value indicating that the search operation is completed.
Declaration
public bool SearchFinished { get; }
  Property Value
| 
        System.Boolean
         
  |