Class RotationChangingEventArgs
RotationChangingEventArgs notifies before the node/connector are rotating
Inherited Members
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public class RotationChangingEventArgs : RotationChangedEventArgs
Examples
<SfDiagramComponent RotationChanging="@RotationChanging">
</SfDiagramComponent>
@code
{
private void RotationChanging(RotationChangingEventArgs args)
{
}
}
Constructors
RotationChangingEventArgs()
Declaration
public RotationChangingEventArgs()
Properties
Cancel
Gets or sets the value indicates whether to cancel the change or not
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|