v1.0
Sets the active list by toggling the activation of elements.
Note: If the SelectionList argument contains an error, the command fails.
SetAndToggleActiveElements( [SelectionList] ); |
Parameter | Type | Description |
---|---|---|
SelectionList | String |
List of 3D objects. Active elements in this list are deactivated, and non-active elements are activated. Default Value: Current selection |
' The following example uses SetAndToggleActiveElements to toggle ' which objects the selection of points will be possible. NewScene CreatePrim "Cone", "MeshSurface" CreatePrim "Cube", "MeshSurface" Translate , 0.315084726066844, 7.40693410939845, -0.740693410939845, _ siRelative, siView, siObj, siXYZ CreatePrim "Sphere", "MeshSurface" Translate , 9.76762650807222, 1.64598535764408, -0.164598535764408, _ siRelative, siView, siObj, siXYZ SelectObj "cone", , True AddToSelection "cube", , True ActivateVertexSelTool SetAndToggleActiveElements "cone, cube, sphere" logMessage "Point selection was only possible on cone and cube" logMessage "It should now be only possible on sphere" |