Class OrthogonalSegmentModel
Represents the orthogonal segment type of the connector
Inheritance
System.Object
OrthogonalSegmentModel
Implements
System.IEquatable<OrthogonalSegmentModel>
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class OrthogonalSegmentModel : Object, IEquatable<OrthogonalSegmentModel>
Constructors
OrthogonalSegmentModel()
Declaration
public OrthogonalSegmentModel()
Properties
AllowDrag
Defines the segment to be a drag or not. By default, it will be true
Declaration
public bool AllowDrag { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Direction
Sets the direction of the orthogonal segment
Declaration
public Direction Direction { get; set; }
Property Value
Type | Description |
---|---|
Direction |
Length
Defines the length of the orthogonal segment.
Declaration
public double Length { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Type
Defines the type of the segment. By default, it will be Orthogonal
Declaration
public Segments Type { get; set; }
Property Value
Type | Description |
---|---|
Segments |
Methods
Equals(OrthogonalSegmentModel)
Indicates whether the OrthogonalSegmentModel object is equal to another object of the same type.
Declaration
public bool Equals(OrthogonalSegmentModel orthogonalSegmentModel)
Parameters
Type | Name | Description |
---|---|---|
OrthogonalSegmentModel | orthogonalSegmentModel | Diagram orthogonal segment. |
Returns
Type | Description |
---|---|
System.Boolean | Returns the Connector orthogonal segment type |
Implements
System.IEquatable<>