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...")
 
(DGS (OOP Syntax)/(Template Organization) Mission)
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||DGSElement:setPostGUI||postGUI|dgsGetPostGUI}}


===Required Arguments===
===Required Arguments===
Line 23: Line 24:
</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}}

Revision as of 19:21, 19 April 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!

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