Gets all properties for an object's beginning marker. Return TRUE if operation was successful.
FUNCTION GetObjBeginningMarker(
obj : HANDLE;
VAR style : LONGINT;
VAR angle : INTEGER;
VAR size : REAL;
VAR width : REAL;
VAR thicknessBasis : INTEGER;
VAR thickness : REAL;
VAR visibility : BOOLEAN): BOOLEAN;def vs.GetObjBeginningMarker(obj):
return (BOOLEAN, style, angle, size, width, thicknessBasis, thickness, visibility)| Name | Type | Description |
|---|---|---|
| obj | HANDLE | Handle to object. |
| 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 inches. |
| width | REAL | The marker width in inches. |
| thicknessBasis | INTEGER | The marker thickness basis. ( see comments for details) |
| thickness | REAL | The marker thickness. |
| visibility | BOOLEAN | The marker visibility. |
PROCEDURE Example;
VAR
h: HANDLE;
style: INTEGER;
angle: INTEGER;
size: REAL;
width: REAL;
thickBasis: INTEGER;
thickness: REAL;
visibility: BOOLEAN;
ok : BOOLEAN;
BEGIN
h := FSActLayer;
ok := GetObjBeginningMarker (h, style, angle, size, width, thickBasis, thickness, visibility);
Message (style, ' / ', angle, ' / ', size, ' / ', width, ' / ', thickBasis, ' / ', thickness, ' / ', visibility);
END;
RUN(Example);def Example():
h = vs.FSActLayer()
ok, style, angle, size, width, thickBasis, thickness, visibility = vs.GetObjBeginningMarker (h)
vs.Message (style, ' / ', angle, ' / ', size, ' / ', width, ' / ', thickBasis, ' / ', thickness, ' / ', visibility)
Example()VS Functions: GetObjEndMarker
Availability: from VectorWorks 13.0