Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 845 Bytes

File metadata and controls

39 lines (31 loc) · 845 Bytes

GetObjectVariableString

Description

Returns the value of a VectorWorks object property. Used with properties returning a STRING value.

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

FUNCTION GetObjectVariableString(
				h     : HANDLE;
				index : INTEGER): STRING;
def vs.GetObjectVariableString(h, index):
    return STRING

Parameters

Name Type Description
h HANDLE Handle to object.
index INTEGER Object property index.

Examples

VectorScript

dimstdName:= GetObjectVariableString(h,27);

Python

dimstdName = vs.GetObjectVariableString(h,27)

Version

Availability: from VectorWorks9.0

Category