v1.0
selection
Extends the selection by toggling the selection of
elements.
Note: If the SelectionList argument contains an error, the command
fails.
ToggleSelection( SelectionList, [HierarchyLevel], [CheckObjectSelectability] ); |
Parameter | Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
SelectionList | String | List of elements to toggle. | ||||||||||||
HierarchyLevel | String | Specifies how to select objects in a hierarchy.
Default Value: "ASITIS"
|
||||||||||||
CheckObjectSelectability | Boolean | Specifies whether to select objects that marked as
unselectable.
Default Value: False
|
' The following example uses ToggleSelection to ' toggle the selection state of the objects NewScene CreatePrim "Cone", "MeshSurface" CreatePrim "Sphere", "MeshSurface" Translate , 6.53800806588703, 4.58524492486573, -0.458524492486574, _ siRelative, siView, siObj, siXYZ CreatePrim "Cube", "MeshSurface" Translate , 9.25561382821357, -5.05552645562117, 0.505552645562117, _ siRelative, siView, siObj, siXYZ AddToSelection "cone", , True ToggleSelection "cube, sphere" logMessage "Cone remains selected, cube is no longer selected" logMessage "and Sphere becomes selected" |