GUIControl.SendToBack()
Sends this control to the back of the Z-order. This allows you to rearrange the display order
of controls within the GUI.
Applies To
Inherited by the Button, InvWindow, Label, ListBox, Slider and TextBox.
Example:
btnBigButton.SendToBack();
will move the btnBigButton button to be behind all other controls on the GUI.
See Also: GUIControl.BringToFront
|