Class ConnectorValue
Represents the source and target id of the connector.
Inheritance
System.Object
ConnectorValue
Implements
System.IEquatable<ConnectorValue>
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class ConnectorValue : Object, IEquatable<ConnectorValue>
Constructors
ConnectorValue()
Declaration
public ConnectorValue()
Properties
NodeId
Defines the source or target node of the connector.
Declaration
public string NodeId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PortId
Defines the source or target port of the connector.
Declaration
public string PortId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(ConnectorValue)
Indicates whether the ConnectorValue object is equal to another object of the same type.
Declaration
public bool Equals(ConnectorValue connectorValue)
Parameters
Type | Name | Description |
---|---|---|
ConnectorValue | connectorValue | Represents the source and target id of the connector. |
Returns
Type | Description |
---|---|
System.Boolean | Return the NodeID/PortId |
Implements
System.IEquatable<>