Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 730 Bytes

File metadata and controls

41 lines (32 loc) · 730 Bytes

IsImageCropVisible

Description

Check is the crop of the image visible.

FUNCTION IsImageCropVisible(obj : HANDLE): BOOLEAN;
def vs.IsImageCropVisible(obj):
    return BOOLEAN

Parameters

Name Type Description
obj HANDLE

Examples

resultOK := IsImageCropVisible(obj);
import vs

# Check is the crop of the image visible.
obj = vs.FSActLayer()  # handle to the first selected object on the active layer

ok = vs.IsImageCropVisible(obj)
if ok:
    vs.Message('IsImageCropVisible succeeded')
else:
    vs.Message('IsImageCropVisible failed')

Version

Availability: from Vectorworks 2014

Category