Verifies the existence of a group.
Rhino.IsGroup (strGroup)
|
strGroup |
Required. String. The name of an existing group. |
|
Boolean |
True if successful, otherwise False. |
|
Null |
On error. |
Dim strGroup
strGroup = Rhino.GetString("Group name to verify")
If Not IsNull(strGroup) and Rhino.IsGroup(strGroup) Then
Rhino.Print "The group exists."
Else
Rhino.Print "The group does not exist."
End If