Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 1.27 KB

File metadata and controls

58 lines (48 loc) · 1.27 KB

SetClassEndMarker

Description

Sets all properties for the named class's end marker. Return TRUE if operation was successful.

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

Parameters

Name Type Description
name STRING Name of the class.
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.

Examples

VectorScript

PROCEDURE Example;
VAR
ok : BOOLEAN;
BEGIN
ok := SetClassEndMarker('None', 1280, 25, 0.125, 0.125, 0, 2);
END;

RUN(Example);

Python

See Also

VS Functions: SetClassBeginningMarker

Version

Availability: from VectorWorks13.0

Category