Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 649 Bytes

File metadata and controls

41 lines (32 loc) · 649 Bytes

SetHeight

Description

Set height of the passed object.

PROCEDURE SetHeight(
				h     : HANDLE;
				value : REAL);
def vs.SetHeight(h, value):
    return None

Parameters

Name Type Description
h HANDLE Handle to object.
value REAL The new height of the object.

Examples

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)

Version

Availability: from Vectorworks14.0

Category