DgsSetPostGUI: 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 dgsSetPostGUI( element dgsElement, bool postGUI )
bool dgsSetPostGUI( element dgsElement, bool postGUI )
</syntaxhighlight>
</syntaxhighlight>
{{DGS/OOP||DGSElement:setPostGUI||postGUI|dgsGetPostGUI}}
{{DGS/OOP|
    Method = DGSElement:setPostGUI|
    Variable = postGUI|
    Counterpart = dgsGetPostGUI
}}


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

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