Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 641 Bytes

File metadata and controls

41 lines (32 loc) · 641 Bytes

SetWidth

Description

Set width of the passed object.

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

Parameters

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

Examples

SetWidth(h, 1.0);
import vs

# Set width of the passed object.
h = vs.FSActLayer()  # handle to the first selected object on the active layer
value = 1.0

vs.SetWidth(h, value)

Version

Availability: from Vectorworks14.0

Category