Procedure SetObjArrow sets the arrow style parameters for the indicated object.
Marker Styles
| Marker Style | Constant |
|---|---|
| Filled Arrow | 0 |
| Empty Arrow | 1 |
| Open Arrow | 2 |
| Filled Circle | 3 |
| Empty Circle | 4 |
| Slash | 5 |
| Cross | 6 |
PROCEDURE SetObjArrow(
obj : HANDLE;
style : INTEGER;
size : REAL;
angle : INTEGER;
start : BOOLEAN;
end : BOOLEAN);def vs.SetObjArrow(obj, style, size, angle, start, end):
return None| Name | Type | Description |
|---|---|---|
| obj | HANDLE | The indicated object. |
| style | INTEGER | The arrow style. |
| size | REAL | The arrow size in inches measured in page space. |
| angle | INTEGER | The arrow angle (in degrees). |
| start | BOOLEAN | Whether the start point of the object has an arrow. |
| end | BOOLEAN | Whether the endpoint of the object has an arrow. |
OBSOLETE for VW2008: Use SetObjBeginningMarker and/or SetObjEndMarker instead. Style indicates the index of the arrow style to be used.
Size is in page-inches. Legal values are 0.0 to 2.0.
Angle is in degrees.
PROCEDURE SetObjArrowValues;
BEGIN
SetObjArrow(FSActLayer, 1, .25, 15, TRUE, TRUE);
END;
RUN(SetObjArrowValues);SetObjArrow is obsolete as of VectorWorks13.0
Availability: from VectorWorks10.0