Blazor

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ConnectorTargetPoint - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class ConnectorTargetPoint

    Represents the Point where the target point of the connector should be placed.

    Inheritance
    System.Object
    SfDiagramBase
    DiagramPoint
    ConnectorTargetPoint
    Inherited Members
    DiagramPoint.X
    DiagramPoint.Y
    SfDiagramBase.UpdateCollection(IList, Boolean)
    SfDiagramBase.RandomString(Int32)
    Namespace: Syncfusion.Blazor.Diagrams
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ConnectorTargetPoint : DiagramPoint
    Examples
    <SfDiagram Height="600px" Connectors="@ConnectorCollection">
    </SfDiagram>
    @code
    {
      //...
       DiagramConnector DiagramConnector = new DiagramConnector()
       {
         // Set the target point of the connector
         SourcePoint = new ConnectorSourcePoint() { X = 100, Y = 100 },
         TargetPoint = new ConnectorTargetPoint() { X = 200, Y = 200 },
        };
       //...
     }

    Constructors

    ConnectorTargetPoint()

    Represents the Point where the target point of the connector should be placed.

    Declaration
    public ConnectorTargetPoint()
    Back to top Generated by DocFX
    Copyright © 2001 - 2022 Syncfusion Inc. All Rights Reserved