Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 745 Bytes

File metadata and controls

41 lines (32 loc) · 745 Bytes

ObjPropsEditDlg

Description

Show object properties edit dialog.

FUNCTION ObjPropsEditDlg(hObj : HANDLE): BOOLEAN;
def vs.ObjPropsEditDlg(hObj):
    return BOOLEAN

Parameters

Name Type Description
hObj HANDLE The object which properties will be edited.

Examples

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')

Version

Availability: from Vectorworks 2017

Category