Name
GetLayerGroupMembers -- return all members of a layer group (V10.0)
Synopsis
t = GetLayerGroupMembers(group$)
Function
This function finds all members of the layer group specified by group$ and returns them in a table. The order in which the group members are returned in the table is arbitrary.

You need to enable layers before you can use this function. See Layers introduction for details.

Inputs
group$
name of layer group to use
Results
t
table containing all group members
Example
t = GetLayerGroupMembers("mygroup")
For Local k = 0 To ListItems(t) - 1 Do DebugPrint(t[k])
The code above gets all members of the layer group "mygroup" and prints them.

Show TOC