menu

Blazor

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

    Show / Hide Table of Contents

    Class EndPointChangingEventArgs

    Represents before the source and target points of the connector are changing.

    Inheritance
    System.Object
    EndPointChangedEventArgs
    EndPointChangingEventArgs
    Inherited Members
    EndPointChangedEventArgs.Connector
    EndPointChangedEventArgs.NewValue
    EndPointChangedEventArgs.OldValue
    EndPointChangedEventArgs.TargetNodeID
    EndPointChangedEventArgs.TargetPortID
    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class EndPointChangingEventArgs : EndPointChangedEventArgs
    Examples
    <SfDiagramComponent Width="1000px" Height="1000px" TargetPointChanging="@OnTargetPointChanging">
    </SfDiagramComponent>
    private void OnTargetPointChanging(EndPointChangingEventArgs args)
    {
        if (args.Connector != null)
        {
            Connector connector = args.Connector;
        }
    }

    Constructors

    EndPointChangingEventArgs()

    Declaration
    public EndPointChangingEventArgs()

    Properties

    Cancel

    Gets or sets the value that indicates whether to cancel the change or not.

    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    System.Boolean

    true, if the change is canceled. Otherwise, false.

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