Purpose In order to shift a group of screen elements en bloc, e.g. radiobuttons, you can use the Offset command. The given offset is then added to all subsequently specified numerical coordinates.
Example The following possibilities are equivalent:

Offset (10,21)  
Radiobutton (0,0) "..."
Radiobutton (1,0) "..."
Radiobutton (2,0) "..."

and 

Radiobutton (10,21) "..."
Radiobutton (11,21) "..."
Radiobutton (12,21) "..."

Format Offset (row,column)
Tips
& Tricks
  • With Offset (0,0) you can cancel the effect of a previous Offset
  • The use of Offset is shown in GuiXT tutorial 3
Components GuiXT