Show object properties edit dialog.
FUNCTION ObjPropsEditDlg(hObj : HANDLE): BOOLEAN;def vs.ObjPropsEditDlg(hObj):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| hObj | HANDLE | The object which properties will be edited. |
resultOK := ObjPropsEditDlg(hObj);import vs
# Show object properties edit dialog.
hObj = vs.FSActLayer() # handle to the first selected object on the active layer
ok = vs.ObjPropsEditDlg(hObj)
if ok:
vs.Message('ObjPropsEditDlg succeeded')
else:
vs.Message('ObjPropsEditDlg failed')Availability: from Vectorworks 2017