DgsGetPostGUI: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(DGS (OOP Syntax)/(Template Organization) Mission)
m (DGS OOP Syntax changing)
 
Line 7: Line 7:
bool dgsGetPostGUI( element dgsElement )
bool dgsGetPostGUI( element dgsElement )
</syntaxhighlight>
</syntaxhighlight>
{{DGS/OOP||DGSElement:getPostGUI||postGUI|dgsSetPostGUI}}
{{DGS/OOP|
    Method = DGSElement:getPostGUI|
    Variable = postGUI|
    Counterpart = dgsSetPostGUI
}}


===Required Arguments===
===Required Arguments===

Latest revision as of 21:26, 3 May 2021

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