Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 547 Bytes

File metadata and controls

32 lines (25 loc) · 547 Bytes

LLayer

Description

Function LLayer returns a handle to the last layer in a VectorWorks document.

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

Examples

resultH := LLayer;
import vs

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

Version

Availability: from All Versions

Category