[]
Applies search to the data on the grid. This method is obsolete. Call method with SearchHighlightMode argument instead.
[Obsolete("Call method with HighlightMode argument instead.")]
public void ApplySearch(string search, bool highlight, bool filter, bool onlyVisibleColumns, bool onlyVisibleRows)
<Obsolete("Call method with HighlightMode argument instead.")>
Public Sub ApplySearch(search As String, highlight As Boolean, filter As Boolean, onlyVisibleColumns As Boolean, onlyVisibleRows As Boolean)
| Type | Name | Description |
|---|---|---|
| string | search | Words which will be searched. |
| bool | highlight | Defines will search results be highlighted or not. |
| bool | filter | Defines will search results be filtered or not. |
| bool | onlyVisibleColumns | Defines will perform search through only visible columns or not. |
| bool | onlyVisibleRows | Defines will perform search through only visible rows or not. |
Applies search to the data on the grid.
public void ApplySearch(string search, SearchHighlightMode highlightMode, bool filter, bool onlyVisibleColumns, bool onlyVisibleRows)
Public Sub ApplySearch(search As String, highlightMode As SearchHighlightMode, filter As Boolean, onlyVisibleColumns As Boolean, onlyVisibleRows As Boolean)
| Type | Name | Description |
|---|---|---|
| string | search | Words which will be searched. |
| SearchHighlightMode | highlightMode | Defines how to search results be highlighted. |
| bool | filter | Defines will search results be filtered or not. |
| bool | onlyVisibleColumns | Defines will perform search through only visible columns or not. |
| bool | onlyVisibleRows | Defines will perform search through only visible rows or not. |
Applies search to the data on the grid.
public void ApplySearch(string search, SearchHighlightMode highlightMode, bool filter, bool onlyVisibleColumns, bool onlyVisibleRows, out int matchesCount)
Public Sub ApplySearch(search As String, highlightMode As SearchHighlightMode, filter As Boolean, onlyVisibleColumns As Boolean, onlyVisibleRows As Boolean, ByRef matchesCount As Integer)
| Type | Name | Description |
|---|---|---|
| string | search | Words which will be searched. |
| SearchHighlightMode | highlightMode | Defines how to search results be highlighted. |
| bool | filter | Defines will search results be filtered or not. |
| bool | onlyVisibleColumns | Defines will perform search through only visible columns or not. |
| bool | onlyVisibleRows | Defines will perform search through only visible rows or not. |
| int | matchesCount | Returns the number of matches. |
Applies search to the data on the grid. This method is obsolete. Call method with HighlightMode argument instead.
[Obsolete("Call method with HighlightMode argument instead.")]
public void ApplySearch(string search, bool highlight, bool filter, bool onlyVisibleColumns)
<Obsolete("Call method with HighlightMode argument instead.")>
Public Sub ApplySearch(search As String, highlight As Boolean, filter As Boolean, onlyVisibleColumns As Boolean)
| Type | Name | Description |
|---|---|---|
| string | search | Words which will be searched. |
| bool | highlight | Defines will search results be highlighted or not. |
| bool | filter | Defines will search results be filtered or not. |
| bool | onlyVisibleColumns | Defines will perform search through only visible columns or not. |
Applies search to the data on the grid.
public void ApplySearch(string search, SearchHighlightMode highlightMode, bool filter, bool onlyVisibleColumns)
Public Sub ApplySearch(search As String, highlightMode As SearchHighlightMode, filter As Boolean, onlyVisibleColumns As Boolean)
| Type | Name | Description |
|---|---|---|
| string | search | Words which will be searched. |
| SearchHighlightMode | highlightMode | Defines how to search results be highlighted. |
| bool | filter | Defines will search results be filtered or not. |
| bool | onlyVisibleColumns | Defines will perform search through only visible columns or not. |
Applies search to the data on the grid. This method is obsolete. Call method with HighlightMode argument instead.
[Obsolete("Call method with HighlightMode argument instead.")]
public void ApplySearch(string search, bool highlight, bool filter)
<Obsolete("Call method with HighlightMode argument instead.")>
Public Sub ApplySearch(search As String, highlight As Boolean, filter As Boolean)
| Type | Name | Description |
|---|---|---|
| string | search | Words which will be searched. |
| bool | highlight | Defines will search results be highlighted or not. |
| bool | filter | Defines will search results be filtered or not. |
Applies search to the data on the grid.
public void ApplySearch(string search, SearchHighlightMode highlightMode, bool filter)
Public Sub ApplySearch(search As String, highlightMode As SearchHighlightMode, filter As Boolean)
| Type | Name | Description |
|---|---|---|
| string | search | Words which will be searched. |
| SearchHighlightMode | highlightMode | Defines how to search results be highlighted. |
| bool | filter | Defines will search results be filtered or not. |
Applies search to the data on the grid.
public void ApplySearch(string search, SearchHighlightMode highlightMode = SearchHighlightMode.OnlyFirst)
Public Sub ApplySearch(search As String, Optional highlightMode As SearchHighlightMode = SearchHighlightMode.OnlyFirst)
| Type | Name | Description |
|---|---|---|
| string | search | Words which will be searched. |
| SearchHighlightMode | highlightMode | Defines how to search results be highlighted. |