GUIControl.BringToFront()
Brings this control to the front 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.BringToFront();
will move the btnBigButton button to be in front of all other controls on the GUI.
See Also: GUIControl.SendToBack
|