Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 1.32 KB

File metadata and controls

58 lines (48 loc) · 1.32 KB

SetDefaultEndMarker

Description

Sets all properties of the document default end marker. Return TRUE if operation was successful.

FUNCTION SetDefaultEndMarker(
				style          : LONGINT;
				angle          : INTEGER;
				size           : REAL;
				width          : REAL;
				thicknessBasis : INTEGER;
				thickness      : REAL;
				visibility     : BOOLEAN): BOOLEAN;
def vs.SetDefaultEndMarker(style, angle, size, width, thicknessBasis, thickness, visibility):
    return BOOLEAN

Parameters

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.

Examples

VectorScript

PROCEDURE Example;
VAR
ok : BOOLEAN;
BEGIN
ok := SetDefaultEndMarker(2176, 15, 0.5, 0, 0, 2, TRUE);	
END;

RUN(Example);

Python

See Also

VS Functions: SetDefaultBeginningMarker

Version

Availability: from VectorWorks13.0

Category