Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 837 Bytes

File metadata and controls

39 lines (31 loc) · 837 Bytes

GetObjectVariableLongInt

Description

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

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

FUNCTION GetObjectVariableLongInt(
				h     : HANDLE;
				index : INTEGER): LONGINT;
def vs.GetObjectVariableLongInt(h, index):
    return LONGINT

Parameters

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

Examples

VectorScript

p:= GetObjectVariableLongInt(h,579);

Python

p = vs.GetObjectVariableLongInt(h,579)

Version

Availability: from VectorWorks9.0

Category