Returns the name of all the groups in the document.
rhinoscriptsyntax.GroupNames()
rhinoscript.group.GroupNames()
None.
List |
An array of group names if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
groups = rs.GroupNames()
if groups:
for group in groups: print group
AddGroup