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 | Description |
---|---|
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> |
Text
Gets the current typed text value.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String |