Class RotationChangedEventArgs
RotationChangedEventArgs notifies when the node/connector are rotated
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. |