DgsGetPostGUI: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Removed redirect to ES/DgsGetPostGUI)
Tag: Removed redirect
m (DGS OOP Syntax changing)
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsGetPostGUI( element dgsElement )
bool dgsGetPostGUI( element dgsElement )
</syntaxhighlight>  
</syntaxhighlight>
{{DGS/OOP|
    Method = DGSElement:getPostGUI|
    Variable = postGUI|
    Counterpart = dgsSetPostGUI
}}


===Required Arguments===
===Required Arguments===
Line 22: Line 27:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
=See Also=
{{DGSFUNCTIONS}}
 
==<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 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