Class MentionOpeningEventArgs
Provides event data for the Opening event when the Mention suggestion popup is about to open.
Inherited Members
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class MentionOpeningEventArgs : BeforeOpenEventArgs
Remarks
This event data allows inspection and modification before the suggestion popup is displayed to the user.
Examples
<SfMention TValue="Employee" DataSource="@Employees" Opening="OnMentionOpening">
</SfMention>
@code {
private void OnMentionOpening(MentionOpeningEventArgs args)
{
// You can read or cancel opening with args.Cancel. (see base BeforeOpenEventArgs)
}
}
Constructors
MentionOpeningEventArgs()
Declaration
public MentionOpeningEventArgs()