Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 817 Bytes

File metadata and controls

41 lines (32 loc) · 817 Bytes

SetObjectVariableReal

Description

Sets the value of a VectorWorks object property. Used with properties requiring a REAL value.

For specific object selector index values, see the Script Appendix.

PROCEDURE SetObjectVariableReal(
				h     : HANDLE;
				index : INTEGER;
				value : REAL);
def vs.SetObjectVariableReal(h, index, value):
    return None

Parameters

Name Type Description
h HANDLE Handle to object.
index INTEGER Object property index.
value REAL New value for property.

Examples

VectorScript

SetPref(17,FALSE);

Python

Version

Availability: from VectorWorks9.0

Category