DgsBringToFront

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

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