alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class SpeedDialOpenCloseEventArgs

    Provides information about the Opened and Closed event callbacks after the popup has been fully opened or closed.

    Inheritance
    object
    SpeedDialOpenCloseEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Buttons
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class SpeedDialOpenCloseEventArgs
    Remarks

    This event argument is used in post-open and post-close scenarios for the SfSpeedDial component, typically for notification or logging after visual state transitions.

    Examples

    Example usage of the Opened event:

    <SfSpeedDial Opened="OnSpeedDialOpened" Closed="OnSpeedDialClosed">
    </SfSpeedDial>
    
    @code {
        private void OnSpeedDialOpened(SpeedDialOpenCloseEventArgs args)
        {
            // args.Element can be used for further DOM queries
        }
    
        private void OnSpeedDialClosed(SpeedDialOpenCloseEventArgs args)
        {
            // perform finalization
        }
    }

    Constructors

    SpeedDialOpenCloseEventArgs()

    Declaration
    public SpeedDialOpenCloseEventArgs()

    Properties

    Element

    Gets the reference to the popup element of the SfSpeedDial that was opened or closed.

    Declaration
    public ElementReference Element { get; }
    Property Value
    Type Description
    ElementReference

    An ElementReference for the popup element of the speed dial.

    Remarks

    This property allows advanced DOM access to the popup after it has transitioned between open and closed states.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved