alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class MentionOpeningEventArgs

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

    Inheritance
    object
    BeforeOpenEventArgs
    MentionOpeningEventArgs
    Inherited Members
    BeforeOpenEventArgs.Cancel
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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()
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved