Class FilteringEventArgs
Provides information about an Filtering event being raised.
Inheritance
System.Object
FilteringEventArgs
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class FilteringEventArgs : Object
Constructors
FilteringEventArgs()
Declaration
public FilteringEventArgs()
Properties
BaseEventArgs
Gets or sets the original keyup
event arguments.
Declaration
public object BaseEventArgs { get; }
Property Value
Type |
---|
System.Object |
Cancel
Gets or sets whether the current filter action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
PreventDefaultAction
Gets or sets the whether to prevent the internal filtering action or not.
Declaration
public bool PreventDefaultAction { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
Text
Gets or sets the current typed text value.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String | System.String |
UpdateData
Gets or sets the filtered data values.
Declaration
public object UpdateData { get; set; }
Property Value
Type |
---|
System.Object |