Edit the specified object.
PROCEDURE EditObjectSpecial(
h : HANDLE;
editMode : INTEGER);def vs.EditObjectSpecial(h, editMode):
return None| Name | Type | Description |
|---|---|---|
| h | HANDLE | The object to edit. |
| editMode | INTEGER | The edit mode: 0-Default; 2-Properties; 3-Reshape; 4-Edit group like; |
EditObjectSpecial(h, 1);import vs
# Edit the specified object.
h = vs.FSActLayer() # handle to the first selected object on the active layer
editMode = 0
vs.EditObjectSpecial(h, editMode)Availability: from Vectorworks 2013