Specifies the style of an arrow; the enumeration members are used as values of the Style property of arrows.
SyntaxVB6
Copy Code
|
|---|
Public Enum EArrowStyle |
C++
Copy Code
|
|---|
enum EArrowStyle |
Members| Member name | Value | Description | |
|---|---|---|---|
![]() |
asBezier |
0 | The arrow segments are Bezier curves. |
![]() |
asPolyline |
1 | The arrow segments are straight lines. |
![]() |
asPerpendicular |
2 | The arrow segments are cascading straight lines, changing their orientation alternatively. |
![]() |
asSpline |
3 | The segments of a link are curves forming an interpolating spline that passes through all control points. |
![]() |
asHRigid |
4 | The arrow consists of a single horizontal line segment that binds the connected nodes so they move together vertically. |
![]() |
asVRigid |
5 | The arrow consists of a single vertical line segment that binds the connected nodes so they move together horizontally. |
See Also