Class GridSearchCellInfo
Inheritance
System.Object
GridSearchCellInfo
Namespace: Syncfusion.UI.Xaml.Grid
Assembly: Syncfusion.SfGrid.WPF.dll
Syntax
public class GridSearchCellInfo : Object
Constructors
GridSearchCellInfo()
Declaration
public GridSearchCellInfo()
Properties
ColumnCollection
Gets a collection columns match with the search text in the associated data object.
Declaration
public List<GridColumn> ColumnCollection { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> | A collection of columns that match with search text in a row. |
Record
Gets or sets data object associated with cell.
Declaration
public object Record { get; set; }
Property Value
Type | Description |
---|---|
System.Object | DataContext of cell. |
Methods
HasColumn(GridColumn)
Returns whether the specified column already added in ColumnCollection.
Declaration
public bool HasColumn(GridColumn column)
Parameters
Type | Name | Description |
---|---|---|
GridColumn | column | Specifies the column to check. |
Returns
Type | Description |
---|---|
System.Boolean | Returns true if the Column is maintained in the ColumnCollection, otherwise false. |