menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class MentionOpeningEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class MentionOpeningEventArgs

    Provides event data for the Opening event when the Mention suggestion popup is about to open.

    Inheritance
    System.Object
    BeforeOpenEventArgs
    MentionOpeningEventArgs
    Inherited Members
    BeforeOpenEventArgs.Cancel
    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()
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved