DgsBringToFront: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "This function sets the font of a dgs element to be used when drawing text. ==Syntax== <syntaxhighlight lang="lua"> bool guiBringToFront ( element dgsElement ) </syntaxhighli...")
 
(DGS OOP Syntax changing)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This function sets the font of a dgs element to be used when drawing text.
{{Client function}}
__NOTOC__
This function bring a dgs element to front.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool guiBringToFront ( element dgsElement )
bool dgsBringToFront ( element dgsElement )
</syntaxhighlight>  
</syntaxhighlight>
{{DGS/OOP|
    Method = DGSElement:bringToFront|
    Counterpart = dgsMoveToBack
}}


===Required Arguments===  
===Required Arguments===  
Line 15: Line 21:
This example creates a dgs window and brings it on top.
This example creates a dgs window and brings it on top.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local window = dgsCreateWindow ( 0.4, 0.4, 0.3, 0.3, "My dummy window", true )
DGS = exports.dgs
dgsBringToFront ( window )
 
local window1 = DGS:dgsCreateWindow ( 0.4, 0.4, 0.3, 0.3, "First Window", true )
local window2 = DGS:dgsCreateWindow ( 0.3, 0.3, 0.3, 0.3, "Second Window", true )
DGS:dgsBringToFront ( window1 )
</syntaxhighlight>
</syntaxhighlight>
=See Also=
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">General Functions</span>==
{{DGS General Functions}}
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">General Events</span>==
{{DGS Events/General}}

Latest revision as of 22:35, 3 May 2021

This function bring a dgs element to front.

Syntax

bool dgsBringToFront ( element dgsElement )

DGS OOP Syntax Help! I don't understand this!

Method: DGSElement:bringToFront(...)
Counterpart: dgsMoveToBack

Required Arguments

  • dgsElement: the DGS element that you want to move to the front.

Returns

Returns true if the function was successful, false otherwise.

Example

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

DGS = exports.dgs

local window1 = DGS:dgsCreateWindow ( 0.4, 0.4, 0.3, 0.3, "First Window", true )
local window2 = DGS:dgsCreateWindow ( 0.3, 0.3, 0.3, 0.3, "Second Window", true )
DGS:dgsBringToFront ( window1 )

See Also

General Functions

General Events