GroupNames

Returns the name of all the groups in the document.

Syntax

rhinoscriptsyntax.GroupNames()

rhinoscript.group.GroupNames()

Parameters

None.

Returns

List

An array of group names if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

groups = rs.GroupNames()

if groups:

    for group in groups: print group

Also See

AddGroup

DeleteGroup

GroupCount

IsGroup

RenameGroup