Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public class SearchProgressChangedEventArgs : EventArgs
Inheritance: objectEventArgsSearchProgressChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the SearchProgressChangedEventArgs class.
C#
public SearchProgressChangedEventArgs(string criteria, GridSearchResultCellInfo cell, GridSearchResultCellCollection cells, bool searchFinished)
The criteria.
cellGridSearchResultCellInfoThe cell.
cellsGridSearchResultCellCollectionThe cells.
searchFinishedboolThe search finished.
Properties
Gets a cell info representing a new search result.
C#
public GridSearchResultCellInfo Cell { get; }
Gets a list of cell infos representing a new search result.
C#
public GridSearchResultCellCollection Cells { get; }
Gets the search criteria that is currently being used for the search operation.
C#
public string SearchCriteria { get; }
Gets a value indicating that the search operation is completed.
C#
public bool SearchFinished { get; }