menu

Blazor

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

    Show / Hide Table of Contents

    Class RotationChangedEventArgs

    RotationChangedEventArgs notifies when the node/connector are rotated

    Inheritance
    System.Object
    RotationChangedEventArgs
    RotationChangingEventArgs
    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class RotationChangedEventArgs : Object
    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.

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