Class MentionFilteringEventArgs<T>
Provides information about an Filtering event being raised.
Inheritance
System.Object
MentionFilteringEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class MentionFilteringEventArgs<T> : Object
Type Parameters
Name |
---|
T |
Constructors
MentionFilteringEventArgs()
Declaration
public MentionFilteringEventArgs()
Properties
Cancel
Gets or sets the whether the current filter action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
FilteredData
Gets or sets filtered IEnumerable data values.
Declaration
public IEnumerable<T> FilteredData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T> | An System.Collections.Generic.IEnumerable<> of filtered data values. |
PreventDefaultAction
Gets or sets the whether the current filter action should be prevented or not.
Declaration
public bool PreventDefaultAction { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Text
Gets the current typed text value.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |