Class FilteringEventArgs
Provides information about an Filtering event being raised.
Inheritance
System.Object
FilteringEventArgs
Namespace: Syncfusion.Blazor.MultiColumnComboBox
Assembly: Syncfusion.Blazor.dll
Syntax
public class FilteringEventArgs : Object
Constructors
FilteringEventArgs()
Declaration
public FilteringEventArgs()
Properties
Cancel
Gets or sets whether the current action needs to be prevented or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean value indicating whether the filtering action should be canceled. The default value is |
PreventDefaultAction
Gets or sets whether to prevent the internal filtering action or not.
Declaration
public bool PreventDefaultAction { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean value indicating whether the internal filtering action should be prevented. The default value is |
Text
Gets the searched text value.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text entered by the user in the SfMultiColumnComboBox<TValue, TItem>. |