Set the image crop visibility.
PROCEDURE SetImageCropVisible(
obj : HANDLE;
isVisible : BOOLEAN);def vs.SetImageCropVisible(obj, isVisible):
return None| Name | Type | Description |
|---|---|---|
| obj | HANDLE | |
| isVisible | BOOLEAN | If TRUE the crop become visible, if FALSE - invisible. |
SetImageCropVisible(obj, TRUE);import vs
# Set the image crop visibility.
obj = vs.FSActLayer() # handle to the first selected object on the active layer
isVisible = True
vs.SetImageCropVisible(obj, isVisible)Availability: from Vectorworks 2014