Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 646 Bytes

File metadata and controls

33 lines (26 loc) · 646 Bytes

FLayer

Description

Function FLayer returns a handle to the first layer in a VectorWorks document.

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

Examples

resultH := FLayer;
import vs

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

See also in tutorials: 29. Cross-Layer Summary

Version

Availability: from All Versions

Category