Represents a cell for the search results.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public class GridSearchResultCellInfo
Inheritance: objectGridSearchResultCellInfo
Constructors
Initializes a new instance of the GridSearchResultCellInfo class.
C#
public GridSearchResultCellInfo(GridViewRowInfo rowInfo, GridViewColumn column, int traverserRowIndex, int traverserColumnIndex)
The row info.
columnGridViewColumnThe column.
traverserRowIndexintIndex of the traverser row.
traverserColumnIndexintIndex of the traverser column.
Initializes a new instance of the GridSearchResultCellInfo class.
C#
public GridSearchResultCellInfo(GridViewRowInfo rowInfo, GridViewColumn column)
The row info.
columnGridViewColumnThe column.
Properties
Gets or sets the column info.
C#
public GridViewColumn ColumnInfo { get; set; }
The column info.
Gets or sets the row info.
C#
public GridViewRowInfo RowInfo { get; set; }
The row info.
Gets or sets the index of the traverser column.
C#
public int TraverserColumnIndex { get; set; }
The index of the traverser column.
Gets or sets the index of the traverser row.
C#
public int TraverserRowIndex { get; set; }
The index of the traverser row.