alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class RotationChangedEventArgs

    RotationChangedEventArgs notifies when the node/connector are rotated

    Inheritance
    object
    RotationChangedEventArgs
    RotationChangingEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class RotationChangedEventArgs
    Examples
    <SfDiagramComponent  RotationChanged="@RotationChanged">
    </SfDiagramComponent>
    @code
    {
        private void RotationChanged(RotationChangedEventArgs args)
        {
    
        }
    }

    Constructors

    RotationChangedEventArgs()

    Declaration
    public RotationChangedEventArgs()

    Properties

    Element

    Gets the node that is selected for rotation.

    Declaration
    public DiagramSelectionSettings? Element { get; }
    Property Value
    Type Description
    DiagramSelectionSettings

    The diagram selection settings of the node that is selected for rotation.

    NewValue

    Gets the new rotation angle.

    Declaration
    public DiagramSelectionSettings? NewValue { get; }
    Property Value
    Type Description
    DiagramSelectionSettings

    A DiagramSelectionSettings object that representing the new rotation angle.

    OldValue

    Gets the previous rotation angle.

    Declaration
    public DiagramSelectionSettings? OldValue { get; }
    Property Value
    Type Description
    DiagramSelectionSettings

    A DiagramSelectionSettings object that representing the previous rotation angle.

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