GuiMoveToBack

From Multi Theft Auto: Wiki
Revision as of 16:54, 9 October 2007 by Talidan (talk | contribs) (New page: {{Client function}} __NOTOC__ This function moves a GUI element to the very back of all other GUI elements. ==Syntax== <syntaxhighlight lang="lua"> bool guiMoveToBack( element guiElement ) </syntaxhighlight> ==...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function moves a GUI element to the very back of all other GUI elements.

Syntax

bool guiMoveToBack( element guiElement )

Required Arguments

  • guiElement: the GUI element that you want to move to the back

Returns

Returns true if the function was successful, false otherwise.

Example

This example creates a gui window and moves it to the back

local window = guiCreateWindow ( 0.4, 0.4, 0.3, 0.3, "My dummy window", true )
guiMoveToBack( window )

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows