Class ConnectionChangingEventArgs
Notifies before the connector’s source id or target id has changing.
Inherited Members
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public class ConnectionChangingEventArgs : ConnectionChangedEventArgs
Examples
<SfDiagramComponent ConnectionChanging="ConnectionChanging">
</SfDiagramComponent>
private void ConnectionChanging(ConnectionChangingEventArgs args)
{
args.Cancel = true;
}
Constructors
ConnectionChangingEventArgs()
Declaration
public ConnectionChangingEventArgs()
Properties
Cancel
Defines whether the user can prevent the connection or disconnection of the connector while its endpoint is dragging.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|