Gets all properties for the document default end marker. Return TRUE if operation was successful.
FUNCTION GetDefaultEndMarker(
VAR style : LONGINT;
VAR angle : INTEGER;
VAR size : REAL;
VAR width : REAL;
VAR thicknessBasis : INTEGER;
VAR thickness : REAL;
VAR visibility : BOOLEAN): BOOLEAN;def vs.GetDefaultEndMarker():
return (BOOLEAN, style, angle, size, width, thicknessBasis, thickness, visibility)| 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;
style: INTEGER;
angle: INTEGER;
size: REAL;
width: REAL;
thickBasis: INTEGER;
thickness: REAL;
visibility: BOOLEAN;
BEGIN
ok := GetDefaultEndMarker (style, angle, size, width, thickBasis, thickness, visibility);
Message (style, ' / ', angle, ' / ', size, ' / ', width, ' / ', thickBasis, ' / ', thickness, ' / ', visibility);
END;
RUN(Example);def Example():
ok, style, angle, size, width, thickBasis, thickness, visibility = vs.GetDefaultEndMarker ()
vs.Message (style, ' / ', angle, ' / ', size, ' / ', width, ' / ', thickBasis, ' / ', thickness, ' / ', visibility)
Example()VS Functions: GetDefaultBeginningMarker
Availability: from VectorWorks13.0