"groups"
    
    Write all shape-groups within a panel to a variable.
Synopsis
dyn_shape shape.groups();
Parameters
None
Description
This read-only property writes pointers to all shape groups and top-level panel references within a panel to a dyn_shape variable.
Example
Write a list of all groups in a panel to the logViewer.
main()
{
  dyn_shape panelGroups;
  panelGroups = this.groups();
  DebugN(panelGroups);
}
        Assignment
Panel