Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 702 Bytes

File metadata and controls

44 lines (35 loc) · 702 Bytes

SetRRDiam

Description

Sets the diameters of a rounded rectangle.

PROCEDURE SetRRDiam(
				h     : HANDLE;
				xDiam : REAL;
				yDiam : REAL);
def vs.SetRRDiam(h, xDiam, yDiam):
    return None

Parameters

Name Type Description
h HANDLE
xDiam REAL
yDiam REAL

Examples

SetRRDiam(h, 1.0, 2.0);
import vs

# Sets the diameters of a rounded rectangle.
h = vs.FSActLayer()  # handle to the first selected object on the active layer
xDiam = 1.0
yDiam = 2.0

vs.SetRRDiam(h, xDiam, yDiam)

Version

Availability: from Vectorworks 2014

Category