Class ConnectionObject
Specifies the source and the target details of the connector.
Inherited Members
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public class ConnectionObject
Examples
<SfDiagramComponent ConnectionChanging="ConnectionChanging">
</SfDiagramComponent>
private void ConnectionChanging(ConnectionChangingEventArgs args)
{
ConnectionObject obj;
}
Constructors
ConnectionObject()
Declaration
public ConnectionObject()
Properties
SourceID
Gets the source node id of the connector.
Declaration
public string? SourceID { get; }
Property Value
| Type |
|---|
| string |
SourcePortID
Gets the source port id of the connector.
Declaration
public string? SourcePortID { get; }
Property Value
| Type |
|---|
| string |
TargetID
Gets the target node id of the connector.
Declaration
public string? TargetID { get; }
Property Value
| Type |
|---|
| string |
TargetPortID
Gets the target port id of the connector.
Declaration
public string? TargetPortID { get; }
Property Value
| Type |
|---|
| string |