DgsGetPostGUI

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function gets the post gui state of a dgs element.

Syntax

bool dgsGetPostGUI( element dgsElement )

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

Method: DGSElement:getPostGUI(...)
Variable: .postGUI
Counterpart: dgsSetPostGUI

Required Arguments

  • dgsElement: The DGS element you want to get from

Returns

Returns true if the dgs element is postGUI, false otherwise.

Example

DGS = exports.dgs
local guiWindow = guiCreateWindow(200,200,400,400,"gui window",false)
local dgsWindow = DGS:dgsCreateWindow(200,200,400,400,"dgs window",false)
DGS:dgsSetPostGUI(dgsWindow, not DGS:dgsGetPostGUI(dgsWindow)) --Reverse the state

See Also

General Functions

General Events