DgsSetPostGUI

From Multi Theft Auto: Wiki
Revision as of 19:21, 19 April 2021 by Lettify (talk | contribs) (DGS (OOP Syntax)/(Template Organization) Mission)
Jump to navigation Jump to search

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