DgsSetPostGUI

From Multi Theft Auto: Wiki
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!

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