Sets all properties of the document default beginning marker. Return TRUE if operation was successful.
FUNCTION SetDefaultBeginningMarker(
style : LONGINT;
angle : INTEGER;
size : REAL;
width : REAL;
thicknessBasis : INTEGER;
thickness : REAL;
visibility : BOOLEAN): BOOLEAN;def vs.SetDefaultBeginningMarker(style, angle, size, width, thicknessBasis, thickness, visibility):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| style | LONGINT | The marker style. (see comments for details) |
| angle | INTEGER | The marker angle in degrees. (0 to 90) |
| size | REAL | The marker size in page inches. |
| width | REAL | The marker width in page inches. |
| thicknessBasis | INTEGER | The marker thickness basis. ( see comments for details) |
| thickness | REAL | The marker thickness. |
| visibility | BOOLEAN | The marker visibility. |
PROCEDURE Example;
VAR
ok : BOOLEAN;
BEGIN
ok := SetDefaultBeginningMarker(2176, 15, 0.5, 0, 0, 2, TRUE);
END;
RUN(Example);VS Functions: SetDefaultEndMarker
Availability: from VectorWorks13.0