GuiGetEnabled

From Multi Theft Auto: Wiki
Revision as of 15:47, 7 November 2018 by StrixG (talk | contribs) (OOP syntax)
Jump to navigation Jump to search

This function determines if a GUI element is enabled.

Syntax

bool guiGetEnabled ( element guiElement )

OOP Syntax Help! I don't understand this!

Method: GuiElement:getEnabled(...)
Variable: .enabled
Counterpart: guiSetEnabled


Required Arguments

  • guiElement: the GUI element to be checked.

Returns

Returns true if the element is enabled, false otherwise.

Example

Click to collapse [-]
Client
function ChangeMyButtonEnabled ( )        
        if ( guiGetEnabled ( MyButton ) == true ) then -- check if the element is enabled           
                guiSetEnabled ( MyButton, false ) -- if it is, we disable it
        else              
                guiSetEnabled ( MyButton, true ) -- if not, we make it enabled
        end
end

MyGuiWindow = guiCreateWindow(254,206,478,306,"Awesome Gui Window",false) -- Your gui window
MyButton = guiCreateButton(0.477,0.8268,0.1946,0.0784,"Hello World!",true,MyGuiWindow) -- Creates a button in your gui window

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows