DgsMoveToBack

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

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

Syntax

bool dgsMoveToBack ( element dgsElement )

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

Method: DGSElement:moveToBack(...)
Counterpart: dgsBringToFront

Required Arguments

  • dgsElement: the DGS element that you want to move to the back

Returns

Returns true if the function was successful, false otherwise.

Example

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

DGS = exports.dgs

local window1 = DGS:dgsCreateWindow ( 0.4, 0.4, 0.3, 0.3, "Window 1", true )
local window2 = DGS:dgsCreateWindow ( 0.4, 0.4, 0.3, 0.3, "Window 2", true )
DGS:dgsMoveToBack( window2 )

See Also

General Functions

General Events