Set height of the passed object.
PROCEDURE SetHeight(
h : HANDLE;
value : REAL);def vs.SetHeight(h, value):
return None| Name | Type | Description |
|---|---|---|
| h | HANDLE | Handle to object. |
| value | REAL | The new height of the object. |
SetHeight(h, 1.0);import vs
# Set height of the passed object.
h = vs.FSActLayer() # handle to the first selected object on the active layer
value = 1.0
vs.SetHeight(h, value)Availability: from Vectorworks14.0