Check is the crop of the image visible.
FUNCTION IsImageCropVisible(obj : HANDLE): BOOLEAN;def vs.IsImageCropVisible(obj):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| obj | HANDLE |
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')Availability: from Vectorworks 2014