Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 970 Bytes

File metadata and controls

42 lines (34 loc) · 970 Bytes

LObject

Description

Function LObject returns a handle to the last object in the first layer of the active document.

FUNCTION LObject : HANDLE;
def vs.LObject():
    return HANDLE

Examples

resultH := LObject;
import vs

# Function LObject returns a handle to the last object in the first layer of
# the active document.
objHandle = vs.LObject()
if objHandle is not None:
    vs.Message('Created object handle: ' + str(objHandle))

See Also

Relative calls:

Version

Availability: from All Versions

Category