Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 701 Bytes

File metadata and controls

39 lines (30 loc) · 701 Bytes

GetImageCropObject

Description

Get the crop of a cropped image.

FUNCTION GetImageCropObject(obj : HANDLE): HANDLE;
def vs.GetImageCropObject(obj):
    return HANDLE

Parameters

Name Type Description
obj HANDLE

Examples

resultH := GetImageCropObject(obj);
import vs

# Get the crop of a cropped image.
obj = vs.FSActLayer()  # handle to the first selected object on the active layer

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

Version

Availability: from Vectorworks 2014

Category