ENUMGROUP

Action

Enumerates all groups of which the current user is a member.

 

Syntax

ENUMGROUP (Index)

 

Parameter

Index

A numeric value representing the group whose name you want to discover (where 0 is the first subkey).

Returns

 

String

Group name

Error code

Function failed

 

Example

$Index = 0

DO

    $Group = ENUMGROUP($Index)

    $Index = $Index + 1

UNTIL Len($Group) = 0