Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 746 Bytes

File metadata and controls

41 lines (32 loc) · 746 Bytes

EditObjectSpecial

Description

Edit the specified object.

PROCEDURE EditObjectSpecial(
				h        : HANDLE;
				editMode : INTEGER);
def vs.EditObjectSpecial(h, editMode):
    return None

Parameters

Name Type Description
h HANDLE The object to edit.
editMode INTEGER The edit mode: 0-Default; 2-Properties; 3-Reshape; 4-Edit group like;

Examples

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)

Version

Availability: from Vectorworks 2013

Category