A class that contains information about the settings related to a search operation and the views related to it.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class DataGridSearchSettings : DataGridSearchSettingsBase
Inheritance: objectDataGridSearchSettingsBaseDataGridSearchSettings
Inherited Members
Constructors
Initializes a new instance of the class.
public DataGridSearchSettings()
Fields
CaseSensitiveProperty
BindableProperty
Identifies the CaseSensitive property.
public static readonly BindableProperty CaseSensitiveProperty
CloseSearchPanelCommandProperty
BindableProperty
Identifies the CloseSearchPanelCommand property.
public static readonly BindableProperty CloseSearchPanelCommandProperty
SearchEntryCompletedCommandProperty
BindableProperty
Identifies the SearchEntryCompletedCommand property.
public static readonly BindableProperty SearchEntryCompletedCommandProperty
SearchPanelVisibilityModeProperty
BindableProperty
Identifies the SearchPanelVisibilityMode property.
public static readonly BindableProperty SearchPanelVisibilityModeProperty
TextMatchModeProperty
BindableProperty
Identifies the TextMatchMode property.
public static readonly BindableProperty TextMatchModeProperty
Properties
Gets or sets a value indicating whether string comparison should be case sensitive.
public bool CaseSensitive { get; set; }
Gets or sets the command that is executed when pressing the close button in the DataGridSearchPanel.
public ICommand CloseSearchPanelCommand { get; set; }
Gets the command that is executed when the Completed event of the search entry in the DataGridSearchPanel is raised.
public ICommand SearchEntryCompletedCommand { get; }
Gets or sets a value indicating the user experience with the visibility of the DataGridSearchPanel and its close button.
public DataGridSearchPanelVisibilityMode SearchPanelVisibilityMode { get; set; }
Gets or sets a value indicating how a search term should be searched for within a text element.
public DataGridSearchTextMatchMode TextMatchMode { get; set; }
Methods
Invoked when probing for search matches. You can override this method and the Matches collection to add custom logic by either adding or removing search matches.
protected override void ProvideSearchMatches(DataGridSearchProbe probe)
An entity that contains information about the item, such as text of the item, the effective search text, and more.
Overrides: