Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 919 Bytes

File metadata and controls

40 lines (31 loc) · 919 Bytes

CreateFillSpace

Description

Creates a new fillspace object and attaches it to the end of the aux list of the specified object.

FUNCTION CreateFillSpace(owner : HANDLE): HANDLE;
def vs.CreateFillSpace(owner):
    return HANDLE

Parameters

Name Type Description
owner HANDLE Handle to the object in whose aux list the fill space will be created.

Examples

resultH := CreateFillSpace(owner);
import vs

# Creates a new fillspace object and attaches it to the end of the aux list
# of the specified object.
owner = vs.FSActLayer()  # handle to the first selected object on the active layer

objHandle = vs.CreateFillSpace(owner)
if objHandle is not None:
    vs.Message('Created object handle: ' + str(objHandle))

Version

Availability: from Vectorworks 2018

Category