GuiBringToFront: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: {{Client function}} __NOTOC__ This function brings a GUI element on top of others. ==Syntax== <syntaxhighlight lang="lua"> bool guiBringToFront ( element guiElement ) </syntaxhighlight> ===Required Arguments===...)
 
m (Добавление языков)
 
(10 intermediate revisions by 5 users not shown)
Line 2: Line 2:
__NOTOC__
__NOTOC__
This function brings a GUI element on top of others.
This function brings a GUI element on top of others.
{{Note|If property "AlwaysOnTop" sets to "True", this function will return false .}}


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool guiBringToFront ( element guiElement )
bool guiBringToFront ( element guiElement )
</syntaxhighlight>  
</syntaxhighlight>
{{OOP||[[GUI widgets|GuiElement]]:bringToFront||}}


===Required Arguments===  
===Required Arguments===  
*'''guiElement:''' the GUI element that you want to get on top
*'''guiElement:''' the GUI element that you want to move to the front.


===Returns===
===Returns===
Returns ''true'' if the function was successfull, ''false'' otherwise.
Returns ''true'' if the function was successful, ''false'' otherwise.


==Example==  
==Example==  
Line 23: Line 27:
==See Also==
==See Also==
{{GUI_functions}}
{{GUI_functions}}
{{GUI_events}}
[[en:guiBringToFront]]
[[ru:guiBringToFront]]

Latest revision as of 15:36, 14 April 2021

This function brings a GUI element on top of others.


[[{{{image}}}|link=|]] Note: If property "AlwaysOnTop" sets to "True", this function will return false .


Syntax

bool guiBringToFront ( element guiElement )

OOP Syntax Help! I don't understand this!

Method: GuiElement:bringToFront(...)


Required Arguments

  • guiElement: the GUI element that you want to move to the front.

Returns

Returns true if the function was successful, false otherwise.

Example

This example creates a gui window and brings it on top.

local window = guiCreateWindow ( 0.4, 0.4, 0.3, 0.3, "My dummy window", true )
guiBringToFront ( 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

Input

GUI