New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class SearchProgressChangedEventArgs : EventArgs

Inheritance: objectEventArgsSearchProgressChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the SearchProgressChangedEventArgs class.

C#
public SearchProgressChangedEventArgs(string criteria, GridSearchResultCellInfo cell, GridSearchResultCellCollection cells, bool searchFinished)
Parameters:criteriastring

The criteria.

cellGridSearchResultCellInfo

The cell.

cellsGridSearchResultCellCollection

The cells.

searchFinishedbool

The 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; }