Index Parent

Group class


The Group class is used to create a set of objects.

A group object can only be added to a window or to another group object.

See MakeObj()

 

ATTRIBUTES
Name Type Class Note
ActivePage M ISGN G2N Valid only if PageMode is 1; a number or one of:
  • Advance
  • First
  • Last
  • Next
  • Prev
Columns N IS  
Forward B S  
Horiz B I  
HorizSpacing N ISG  
PageMode B I  
Rows N IS  
SameHeight N IS  
SameSize B I  
SameWidth B I  
Spacing N IS  
VertSpacing N ISG  

 

METHODS
Name Parameters Note
ExitChange   Note that ExitChanges is still supported, but obsolete
InitChange   Note that InitChanges is still supported, but obsolete
Sort {obj}  

 

How to dinamically add/remove objects:

  1. Enter the Change phase:
    call DoMethod("group","InitChange")
  2. Remove the obsolete object (if needed):
    call Remove("obsolete_obj")
  3. Add the new object (if needed):
    call Add("group","new_obj")
  4. Exit the Change phase:
    call DoMethod("group","ExitChange")