Shows a group of previously hidden objects. Hidden objects are not visible, cannot be snapped to, and cannot be selected.
rhinoscriptsyntax.ShowGroup (group_name)
rhinoscript.group.ShowGroup (group_name)
group_name |
Required. String. The name of an existing group. |
Number |
The number of object that were shown if successful. |
None |
On error. |
import rhinoscriptsyntax as rs
groups = rs.GroupNames()
if groups:
for group in groups: rs.ShowGroup(group)