Class MentionValueSelectingEventArgs<T>
Provides information about an ValueSelecting event being raised.
Inheritance
System.Object
MentionValueSelectingEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class MentionValueSelectingEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | T value of the Mention component. |
Constructors
MentionValueSelectingEventArgs()
Declaration
public MentionValueSelectingEventArgs()
Properties
Cancel
Gets or sets the whether the item selection action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsInteracted
Gets the if the event is triggered by user interaction, it returns true. Otherwise, it returns false.
Declaration
public bool IsInteracted { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ItemData
Gets or set the selected item IEnumerable Object from the data source.
Declaration
public T ItemData { get; set; }
Property Value
Type | Description |
---|---|
T | An item data. |