DgsSetPostGUI: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ This function sets the post gui state of a dgs element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSetPostGUI( element dgsElement, bool po...")
 
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 dgsSetPostGUI( element dgsElement, bool postGUI )
bool dgsSetPostGUI( element dgsElement, bool postGUI )
</syntaxhighlight>  
</syntaxhighlight>
{{DGS/OOP|
    Method = DGSElement:setPostGUI|
    Variable = postGUI|
    Counterpart = dgsGetPostGUI
}}


===Required Arguments===
===Required Arguments===
Line 23: Line 28:
</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:27, 3 May 2021

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

Syntax

bool dgsSetPostGUI( element dgsElement, bool postGUI )

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

Method: DGSElement:setPostGUI(...)
Variable: .postGUI
Counterpart: dgsGetPostGUI

Required Arguments

  • dgsElement: The DGS element you wish to change the font of
  • postGUI: The post GUI state of dgs element.

Returns

Returns true if successful, 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,true)

See Also

General Functions

General Events